mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-05-25 14:09:14 +00:00
Fix various if parenthesis misplacements.
This commit is contained in:
parent
4931c8f0f1
commit
2f0f9a87d0
6 changed files with 7 additions and 7 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue