# HG changeset patch # User bcoudurier # Date 1201740621 0 # Node ID 2265a9c096a41fe1bde4d1c8911707f3c4f7354b # Parent c9433472cb95a42846ddc17be6ef5410912e1fda add parenthesis, fix warning: qtrleenc.c:257: warning: suggest parentheses around && within || diff -r c9433472cb95 -r 2265a9c096a4 qtrleenc.c --- a/qtrleenc.c Thu Jan 31 00:15:24 2008 +0000 +++ b/qtrleenc.c Thu Jan 31 00:50:21 2008 +0000 @@ -254,7 +254,7 @@ bytestream_put_be32(&buf, 0); // CHUNK SIZE, patched later - if (start_line == 0 && end_line == s->avctx->height || start_line == s->avctx->height) + if ((start_line == 0 && end_line == s->avctx->height) || start_line == s->avctx->height) bytestream_put_be16(&buf, 0); // header else { bytestream_put_be16(&buf, 8); // header