summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAntonin Descampe <antonin@gmail.com>2017-08-08 18:05:37 -0700
committerAntonin Descampe <antonin@gmail.com>2017-08-08 18:05:37 -0700
commit0c07950cb3f318df5b2051ae5d96bef553bb9966 (patch)
treef3656c147ff10ceace93dda77b5fe58f0a993f45 /src
parent0394f8d0f1c981e0bc587beddc14d1fb0b265b1b (diff)
Fix remaining warning
format specifier mismatch in #975
Diffstat (limited to 'src')
-rw-r--r--src/bin/jp2/converttif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/jp2/converttif.c b/src/bin/jp2/converttif.c
index 080b470f..4d2ed5a1 100644
--- a/src/bin/jp2/converttif.c
+++ b/src/bin/jp2/converttif.c
@@ -1281,7 +1281,7 @@ opj_image_t* tiftoimage(const char *filename, opj_cparameters_t *parameters)
h = (int)tiHeight;
if (tiSpp == 0 || tiSpp > 4) { /* should be 1 ... 4 */
- fprintf(stderr, "tiftoimage: Bad value for samples per pixel == %hu.\n"
+ fprintf(stderr, "tiftoimage: Bad value for samples per pixel == %d.\n"
"\tAborting.\n", tiSpp);
TIFFClose(tif);
return NULL;