Commit d641ee94 authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Martin Storsjö

lavf: Fix assignments in if()

Signed-off-by: 's avatarMartin Storsjö <martin@martin.st>
parent 30aeada3
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment