From d641ee94b57a581ab0e45bb21c64bb5a32b0502c Mon Sep 17 00:00:00 2001 From: Michael Niedermayer <michaelni@gmx.at> Date: Mon, 14 Jan 2013 00:07:26 +0100 Subject: [PATCH] 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ö <martin@martin.st> --- libavformat/mux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/mux.c b/libavformat/mux.c index 96eecb5a93f..f7a7f3a2c9b 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; -- GitLab