Skip to content
Snippets Groups Projects
Commit d641ee94 authored by Michael Niedermayer's avatar Michael Niedermayer Committed by Martin Storsjö
Browse files

lavf: Fix assignments in if()

parent 30aeada3
No related branches found
No related tags found
No related merge requests found
...@@ -305,7 +305,7 @@ int avformat_write_header(AVFormatContext *s, AVDictionary **options) ...@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment