Extra tokens at the end of #endif directive corrected in openjpeg.c, j2k.c and image_to_j2k.c -> no more warnings in linux compilation

This commit is contained in:
Francois-Olivier Devaux 2007-01-31 15:19:54 +00:00
parent 16879e20ec
commit 3f5e8eb92b
4 changed files with 4 additions and 3 deletions

View File

@ -6,6 +6,7 @@ What's New for OpenJPEG
+ : added
January 31, 2007
! [FOD] Extra tokens at the end of #endif directive corrected in openjpeg.c, j2k.c and image_to_j2k.c -> no more warnings in linux compilation
! [FOD] Linux Makefile added for the codec
January 30, 2007

View File

@ -978,7 +978,7 @@ int parse_cmdline_encoder(int argc, char **argv, opj_cparameters_t *parameters)
}
break;
#endif USE_JPWL
#endif /* USE_JPWL */
/* <<UniPG */
/* ------------------------------------------------------ */

View File

@ -1586,7 +1586,7 @@ opj_image_t* j2k_decode(opj_j2k_t *j2k, opj_cio_t *cio) {
}
}
#endif USE_JPWL
#endif /* USE_JPWL */
/* <<UniPG */
if (id >> 8 != 0xff) {
opj_image_destroy(image);

View File

@ -261,7 +261,7 @@ void OPJ_CALLCONV opj_set_default_encoder_parameters(opj_cparameters_t *paramete
parameters->jpwl_sens_TPH[i] = -1; /* absent */
}
};
#endif USE_JPWL
#endif /* USE_JPWL */
/* <<UniPG */
}
}