coreaudio: Fix call to pa_thread_new
authorEdward Rudd <urkle@outoforder.cc>
Tue, 22 Feb 2011 15:13:05 +0000 (10:13 -0500)
committerColin Guthrie <cguthrie@mandriva.org>
Tue, 22 Feb 2011 21:32:09 +0000 (21:32 +0000)
src/modules/coreaudio/module-coreaudio-device.c

index 5e6d49c..cc4600b 100644 (file)
@@ -747,7 +747,7 @@ int pa__init(pa_module *m) {
     ca_device_create_streams(m, TRUE);
 
     /* 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.");
         goto fail;
     }