diff options
author | Michael Niedermayer | 2013-01-14 00:07:26 +0100 |
---|---|---|
committer | Martin Storsjö | 2013-01-14 13:12:55 +0200 |
commit | d641ee94b57a581ab0e45bb21c64bb5a32b0502c (patch) | |
tree | c9d7f23ec023d9d796fff7e2219a9d01816d5ed9 /libavformat/mux.c | |
parent | 30aeada3d8e94682035da15bca28dd6dce6bc3a8 (diff) |
lavf: Fix assignments in if()
Signed-off-by: Martin Storsjö <martin@martin.st>
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r-- | libavformat/mux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/mux.c b/libavformat/mux.c index 96eecb5a93..f7a7f3a2c9 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -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; |