1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-06-30 22:24:04 +02:00

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;