summaryrefslogtreecommitdiff
path: root/libavformat/mux.c
diff options
context:
space:
mode:
authorMichael Niedermayer <michaelni@gmx.at>2013-01-14 00:07:26 +0100
committerMichael Niedermayer <michaelni@gmx.at>2013-01-14 05:05:41 +0100
commit1ac5a8d7e3343718b0e86b44013742b7ca413c38 (patch)
tree6c56574984a9a305b1f9b05ee9a4a2ca218e96f8 /libavformat/mux.c
parent6f88d2d786b87cbfec5ea16d1cb570ad30c80399 (diff)
lavf/mux: Fix assignments in if()
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'libavformat/mux.c')
-rw-r--r--libavformat/mux.c2
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;