From: Edward Rudd Date: Tue, 22 Feb 2011 16:04:19 +0000 (-0500) Subject: solaris: update call of pa_thread_new to new prototype X-Git-Tag: submit/2.0-panda/20130828.192557~833 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=ee4a33b5869f355670faca4adcc40fefd2797e0d;p=profile%2Fivi%2Fpulseaudio-panda.git solaris: update call of pa_thread_new to new prototype --- diff --git a/src/modules/module-solaris.c b/src/modules/module-solaris.c index 396094c..5c1a86c 100644 --- a/src/modules/module-solaris.c +++ b/src/modules/module-solaris.c @@ -1015,7 +1015,7 @@ int pa__init(pa_module *m) { else pa_log_warn("Could not register SIGPOLL handler"); - if (!(u->thread = pa_thread_new(thread_func, u))) { + if (!(u->thread = pa_thread_new("solaris", thread_func, u))) { pa_log("Failed to create thread."); goto fail; }