aboutsummaryrefslogtreecommitdiffstats
path: root/rd
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2014-11-20 12:37:46 +0100
committerGerd Hoffmann <kraxel@redhat.com>2014-11-25 08:46:37 +0100
commit5d241225a25c57aaecc11ee0989c6aea4da78043 (patch)
tree9d2d0b82b5bacbffcd0cfab9ca0fe5ee53e10c60 /rd
parentb28884f4beca45086a74f78cc10e0548fe4e63a9 (diff)
downloadfbida-5d241225a25c57aaecc11ee0989c6aea4da78043.tar.gz
fix warnings
Diffstat (limited to 'rd')
-rw-r--r--rd/read-tiff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rd/read-tiff.c b/rd/read-tiff.c
index 3f75b83..b88b10c 100644
--- a/rd/read-tiff.c
+++ b/rd/read-tiff.c
@@ -55,7 +55,7 @@ tiff_init(FILE *fp, char *filename, unsigned int page,
"nsamples=%d, depth=%d fo=%d pm=%d scanline=%" PRId32 "\n",
h->width,h->height,h->config,h->nsamples,h->depth,
h->fillorder,h->photometric,
- TIFFScanlineSize(h->tif));
+ (uint32_t)TIFFScanlineSize(h->tif));
if (PHOTOMETRIC_PALETTE == h->photometric ||
PHOTOMETRIC_YCBCR == h->photometric ||