From d641ee94b57a581ab0e45bb21c64bb5a32b0502c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Mon, 14 Jan 2013 00:07:26 +0100 Subject: lavf: Fix assignments in if() MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Storsjö --- libavformat/mux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libavformat/mux.c') 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; -- cgit v1.2.3