Commit a2e444d5 authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/pngdec: Fix () placement

Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent e1be40bb
......@@ -858,7 +858,7 @@ static int decode_iccp_chunk(PNGDecContext *s, int length, AVFrame *f)
length = FFMAX(length - 1, 0);
if ((ret = decode_zbuf(&bp, s->gb.buffer, s->gb.buffer + length) < 0))
if ((ret = decode_zbuf(&bp, s->gb.buffer, s->gb.buffer + length)) < 0)
return ret;
av_bprint_finalize(&bp, (char **)&data);
......
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