1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2024-12-23 12:43:46 +02:00

lavf/mux: Fix assignments in if()

Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
Michael Niedermayer 2013-01-14 00:07:26 +01:00
parent 6f88d2d786
commit 1ac5a8d7e3

View File

@ -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;