mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
lavf: Fix assignments in if()
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
30aeada3d8
commit
d641ee94b5
@ -305,7 +305,7 @@ int avformat_write_header(AVFormatContext *s, AVDictionary **options)
|
||||
return ret;
|
||||
}
|
||||
|
||||
if ((ret = init_pts(s) < 0))
|
||||
if ((ret = init_pts(s)) < 0)
|
||||
return ret;
|
||||
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user