mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-05 13:29:57 -05:00
Style fix: Remove new lines from opening brackets
This patch replaces every occurrence of ')\n{' with ') {'.
Command used for this:
find . -type d \( -name ffmpeg \) -prune -o \
-regex '\(.*\.[hc]\|.*\.cc\)' \
-a -not -name core-util.c -a -not \
-name adrian-aec.c -a -not -name g711.c \
-exec sed -i -e '/)$/{N;s/)\n{$/) {/}' {} \;
The excluded files are mirrored files from external sources.
This commit is contained in:
parent
cbd274676d
commit
e95d054e40
25 changed files with 40 additions and 80 deletions
|
|
@ -223,8 +223,7 @@ static void get_server_info_callback(pa_context *c, const pa_server_info *i, voi
|
|||
complete_action();
|
||||
}
|
||||
|
||||
static const char* get_available_str_ynonly(int available)
|
||||
{
|
||||
static const char* get_available_str_ynonly(int available) {
|
||||
switch (available) {
|
||||
case PA_PORT_AVAILABLE_YES: return ", available";
|
||||
case PA_PORT_AVAILABLE_NO: return ", not available";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue