diff options
author | poljar (Damir Jelić) <poljarinho@gmail.com> | 2013-06-18 16:45:30 +0200 |
---|---|---|
committer | Tanu Kaskinen <tanu.kaskinen@linux.intel.com> | 2013-06-24 16:56:24 +0300 |
commit | cbd274676d510b755e9b670e40228d490707a5b8 (patch) | |
tree | 042dd057ac398b9bd92fa85e68568d67971458d3 /src/utils/pactl.c | |
parent | faf991ce220dcb7be3eeb9d8ad36af76becc7188 (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.c | 2 |
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") || |