diff options
author | poljar (Damir Jelić) <poljarinho@gmail.com> | 2013-06-18 22:17:48 +0200 |
---|---|---|
committer | Tanu Kaskinen <tanu.kaskinen@linux.intel.com> | 2013-06-24 16:56:24 +0300 |
commit | 97da92d894c2a29bc3ccf60dc904e4099b30f47e (patch) | |
tree | f266b42234834b34a767618a3e917d5724d0ecad /src/pulsecore/cli-text.c | |
parent | e95d054e40f65bdf84bf80d289d6cbcdc3b076d5 (diff) |
Whitespace cleanup: Remove all multiple newlines
This patch removes all occurrences of double and triple
newlines.
Command used for this:
find . -type d \( -name ffmpeg \) -prune -o \
-regex '\(.*\.[hc]\|.*\.cc\)' \
-a -not -name 'adrian-aec.*' -a -not \
-name reserve.c -a -not -name 'rtkit.*' \
-exec sed -i -e '/^$/{N;s/^\n$//}' {} \;
Two passes were needed to remove triple newlines.
The excluded files are mirrored files from external sources.
Diffstat (limited to 'src/pulsecore/cli-text.c')
-rw-r--r-- | src/pulsecore/cli-text.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/pulsecore/cli-text.c b/src/pulsecore/cli-text.c index 9b31e97d5..1cf68d019 100644 --- a/src/pulsecore/cli-text.c +++ b/src/pulsecore/cli-text.c @@ -255,7 +255,6 @@ char *pa_sink_list_to_string(pa_core *c) { cmn = pa_channel_map_to_pretty_name(&sink->channel_map); - pa_strbuf_printf( s, " %c index: %u\n" @@ -470,7 +469,6 @@ char *pa_source_list_to_string(pa_core *c) { return pa_strbuf_tostring_free(s); } - char *pa_source_output_list_to_string(pa_core *c) { pa_strbuf *s; pa_source_output *o; @@ -512,7 +510,6 @@ char *pa_source_output_list_to_string(pa_core *c) { } else volume_str = pa_xstrdup("n/a"); - pa_strbuf_printf( s, " index: %u\n" |