From 6b5bbc2645961a1259bb84698f95af813011dcbb Mon Sep 17 00:00:00 2001 From: Mathieu Malaterre Date: Wed, 11 Jul 2012 15:00:55 +0000 Subject: [PATCH] [1.5] Fix r1727 (Issue 156) to compile on compilers where false is not defined. --- libopenjpeg/j2k.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libopenjpeg/j2k.c b/libopenjpeg/j2k.c index ec0c29b2..093d3c5c 100644 --- a/libopenjpeg/j2k.c +++ b/libopenjpeg/j2k.c @@ -1602,7 +1602,7 @@ static void j2k_write_eoc(opj_j2k_t *j2k) { static void j2k_read_eoc(opj_j2k_t *j2k) { int i, tileno; - opj_bool success = false; + opj_bool success = OPJ_FALSE; /* if packets should be decoded */ if (j2k->cp->limit_decoding != DECODE_ALL_BUT_PACKETS) { @@ -1619,7 +1619,7 @@ static void j2k_read_eoc(opj_j2k_t *j2k) { tcd_free_decode_tile(tcd, i); } else - success = false; + success = OPJ_FALSE; if (success == OPJ_FALSE) { j2k->state |= J2K_STATE_ERR; break;