Split oversized of "argument" onto a separate line.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@29159 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2009-04-09 20:10:35 +00:00
parent d1c4d6c7ef
commit 33645075f1
1 changed files with 2 additions and 1 deletions

View File

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