mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-08 13:29:59 -05:00
coreaudio: Fix call to pa_thread_new
This commit is contained in:
parent
99ddca89cd
commit
03c4fd5c4c
1 changed files with 1 additions and 1 deletions
|
|
@ -747,7 +747,7 @@ int pa__init(pa_module *m) {
|
||||||
ca_device_create_streams(m, TRUE);
|
ca_device_create_streams(m, TRUE);
|
||||||
|
|
||||||
/* create the message thread */
|
/* create the message thread */
|
||||||
if (!(u->thread = pa_thread_new(thread_func, u))) {
|
if (!(u->thread = pa_thread_new("coreaudio", thread_func, u))) {
|
||||||
pa_log("Failed to create thread.");
|
pa_log("Failed to create thread.");
|
||||||
goto fail;
|
goto fail;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue