diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-14 00:07:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-18 05:14:31 +0100 |
commit | 9348514a6713a1457052cd980c9c5e9d8544f332 (patch) | |
tree | 4b21fca54e41094ed9c4d38aa92cada9ae2a1729 | |
parent | 17704500fb0ca66f82ca6b3576bb359fb79f9ebb (diff) | |
download | ffmpeg-9348514a6713a1457052cd980c9c5e9d8544f332.tar.gz |
lavf/mux: Fix assignments in if()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
(cherry picked from commit 1ac5a8d7e3343718b0e86b44013742b7ca413c38)
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
-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 c34a2946c7..649b4961d9 100644 --- a/libavformat/mux.c +++ b/libavformat/mux.c @@ -395,7 +395,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; |