Fix various if parenthesis misplacements.

This commit is contained in:
Clément Bœsch 2011-11-21 07:50:03 +01:00
parent 4931c8f0f1
commit 2f0f9a87d0
6 changed files with 7 additions and 7 deletions

View file

@ -173,7 +173,7 @@ int main(int argc, char **argv)
av_register_all();
avfilter_register_all();
if ((ret = open_input_file(argv[1]) < 0))
if ((ret = open_input_file(argv[1])) < 0)
goto end;
if ((ret = init_filters(filter_descr)) < 0)
goto end;