coreaudio: Fix call to pa_thread_new

This commit is contained in:
Edward Rudd 2011-02-22 10:13:05 -05:00 committed by Colin Guthrie
parent 99ddca89cd
commit 03c4fd5c4c

View file

@ -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;
} }