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:
poljar (Damir Jelić) 2013-06-18 16:45:20 +02:00 committed by Tanu Kaskinen
parent 5e11ea06ef
commit faf991ce22
6 changed files with 44 additions and 44 deletions