summaryrefslogtreecommitdiff
path: root/src/utils/pactl.c
diff options
context:
space:
mode:
authorpoljar (Damir Jelić) <poljarinho@gmail.com>2013-06-18 16:45:30 +0200
committerTanu Kaskinen <tanu.kaskinen@linux.intel.com>2013-06-24 16:56:24 +0300
commitcbd274676d510b755e9b670e40228d490707a5b8 (patch)
tree042dd057ac398b9bd92fa85e68568d67971458d3 /src/utils/pactl.c
parentfaf991ce220dcb7be3eeb9d8ad36af76becc7188 (diff)
Style fix: Add a space between the closing/opening bracket
This patch replaces every occurrence of '){' with ') {'. The ffmpeg source tree was excluded since it will disappear anyways. Command used for this: find . -type d \( -name ffmpeg \) -prune -o \ -regex '\(.*\.[hc]\|.*\.cc\)' \ -exec sed -i -e 's/){/) {/' {} \;
Diffstat (limited to 'src/utils/pactl.c')
-rw-r--r--src/utils/pactl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/pactl.c b/src/utils/pactl.c
index 8e6ec7608..5102e2e0b 100644
--- a/src/utils/pactl.c
+++ b/src/utils/pactl.c
@@ -1605,7 +1605,7 @@ int main(int argc, char *argv[]) {
else if (pa_streq(argv[optind], "list")) {
action = LIST;
- for (int i = optind+1; i < argc; i++){
+ for (int i = optind+1; i < argc; i++) {
if (pa_streq(argv[i], "modules") || pa_streq(argv[i], "clients") ||
pa_streq(argv[i], "sinks") || pa_streq(argv[i], "sink-inputs") ||
pa_streq(argv[i], "sources") || pa_streq(argv[i], "source-outputs") ||