diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2013-01-14 00:07:26 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2013-01-14 05:05:41 +0100 |
commit | 1ac5a8d7e3343718b0e86b44013742b7ca413c38 (patch) | |
tree | 6c56574984a9a305b1f9b05ee9a4a2ca218e96f8 /libavformat | |
parent | 6f88d2d786b87cbfec5ea16d1cb570ad30c80399 (diff) | |
download | ffmpeg-1ac5a8d7e3343718b0e86b44013742b7ca413c38.tar.gz |
lavf/mux: Fix assignments in if()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat')
-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; |