mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-12-08 06:09:50 +00:00
lavf: Fix assignments in if()
Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
30aeada3d8
commit
d641ee94b5
1 changed files with 1 additions and 1 deletions
|
|
@ -305,7 +305,7 @@ int avformat_write_header(AVFormatContext *s, AVDictionary **options)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ((ret = init_pts(s) < 0))
|
if ((ret = init_pts(s)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue