[1.5] Fix r1727 (Issue 156) to compile on compilers where false is not defined.

This commit is contained in:
Mathieu Malaterre 2012-07-11 15:00:55 +00:00
parent 8b5f815925
commit 6b5bbc2645
1 changed files with 2 additions and 2 deletions

View File

@ -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;