From: malaterre Date: Mon, 24 Oct 2005 20:28:40 +0000 (+0000) Subject: COMP: Fix warning X-Git-Tag: OpenJPEG.Version1.2~194 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=7cdd5ee31999f160877abf4e0a771ee0d2d62542;p=gdcm.git COMP: Fix warning --- diff --git a/src/gdcmopenjpeg/libopenjpeg/tcd.c b/src/gdcmopenjpeg/libopenjpeg/tcd.c index eabca322..b087746c 100644 --- a/src/gdcmopenjpeg/libopenjpeg/tcd.c +++ b/src/gdcmopenjpeg/libopenjpeg/tcd.c @@ -61,6 +61,7 @@ extern jmp_buf j2k_error; void tcd_dump(tcd_image_t * img, int curtileno) { int tileno, compno, resno, bandno, precno, cblkno; + (void)curtileno; fprintf(stdout, "image {\n"); fprintf(stdout, " tw=%d, th=%d x0=%d x1=%d y0=%d y1=%d\n", img->tw, img->th, tcd_img->x0, tcd_img->x1, tcd_img->y0, tcd_img->y1);