[MPlayer-cvslog] r29159 - trunk/libao2/ao_pulse.c

reimar subversion at mplayerhq.hu
Thu Apr 9 22:10:36 CEST 2009


Author: reimar
Date: Thu Apr  9 22:10:35 2009
New Revision: 29159

Log:
Split oversized of "argument" onto a separate line.

Modified:
   trunk/libao2/ao_pulse.c

Modified: trunk/libao2/ao_pulse.c
==============================================================================
--- trunk/libao2/ao_pulse.c	Thu Apr  9 22:07:26 2009	(r29158)
+++ trunk/libao2/ao_pulse.c	Thu Apr  9 22:10:35 2009	(r29159)
@@ -393,7 +393,8 @@ static int control(int cmd, void *arg) {
             }
 
             pa_threaded_mainloop_lock(mainloop);
-            if (!(o = pa_context_set_sink_input_volume(context, pa_stream_get_index(stream), &volume, NULL, NULL))) {
+            o = pa_context_set_sink_input_volume(context, pa_stream_get_index(stream), &volume, NULL, NULL);
+            if (!o) {
                 pa_threaded_mainloop_unlock(mainloop);
                 GENERIC_ERR_MSG(context, "pa_context_set_sink_input_volume() failed");
                 return CONTROL_ERROR;


More information about the MPlayer-cvslog mailing list