mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-04 13:29:59 -05:00
Style fix: Add a space betwen the if statement and the opening bracket
This patch replaces every occurrence of 'if(' with 'if ('.
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/ if(/ if (/' {} \;
This commit is contained in:
parent
5e11ea06ef
commit
faf991ce22
6 changed files with 44 additions and 44 deletions
|
|
@ -275,7 +275,7 @@ static void source_output_push_cb(pa_source_output *o, const pa_memchunk *chunk)
|
|||
|
||||
/* if uplink sink exists, pull data from there; simplify by using
|
||||
same length as chunk provided by source */
|
||||
if(u->sink && (pa_sink_get_state(u->sink) == PA_SINK_RUNNING)) {
|
||||
if (u->sink && (pa_sink_get_state(u->sink) == PA_SINK_RUNNING)) {
|
||||
pa_memchunk tchunk;
|
||||
size_t nbytes = chunk->length;
|
||||
pa_mix_info streams[2];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue