From c0392af20a504d7ced715cbd7152fd6d032125aa Mon Sep 17 00:00:00 2001 From: Paul Menzel Date: Sun, 20 Mar 2011 23:01:13 +0100 Subject: tunnel: Remove bogus `{` Fix mistakes in: commit 36e7f8a92e8b340dd4034a39a655ba93bcd41886 Author: Colin Guthrie Date: Sun Mar 20 14:09:14 2011 +0000 tunnel: Fix tunnel streams with recent servers Prompted by bug #750. Thanks to Emil Renner Berthing for the original patch. --- src/modules/module-tunnel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/modules/module-tunnel.c') diff --git a/src/modules/module-tunnel.c b/src/modules/module-tunnel.c index 65fb67dc..6cb22e03 100644 --- a/src/modules/module-tunnel.c +++ b/src/modules/module-tunnel.c @@ -1689,8 +1689,8 @@ static void setup_complete_callback(pa_pdispatch *pd, uint32_t command, uint32_t if (u->version >= 17) pa_tagstruct_put_boolean(reply, FALSE); /* relative volume */ - if (u->version >= 18) { - pa_tagstruct_put_boolean(reply, FALSE); /* passthough stream */ + if (u->version >= 18) + pa_tagstruct_put_boolean(reply, FALSE); /* passthrough stream */ #endif pa_pstream_send_tagstruct(u->pstream, reply); -- cgit