avformat/matroskaenc: Fix () error

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-10-07 14:01:20 +02:00
parent 82c4d57553
commit 572f16e100
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ static int start_ebml_master_crc32(AVIOContext *pb, AVIOContext **dyn_cp, ebml_m
{
int ret;
if (ret = avio_open_dyn_buf(dyn_cp) < 0)
if ((ret = avio_open_dyn_buf(dyn_cp)) < 0)
return ret;
if (pb->seekable)