Commit 572f16e1 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/matroskaenc: Fix () error

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent 82c4d575
...@@ -316,7 +316,7 @@ static int start_ebml_master_crc32(AVIOContext *pb, AVIOContext **dyn_cp, ebml_m ...@@ -316,7 +316,7 @@ static int start_ebml_master_crc32(AVIOContext *pb, AVIOContext **dyn_cp, ebml_m
{ {
int ret; int ret;
if (ret = avio_open_dyn_buf(dyn_cp) < 0) if ((ret = avio_open_dyn_buf(dyn_cp)) < 0)
return ret; return ret;
if (pb->seekable) if (pb->seekable)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment