summaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2016-07-03 13:30:09 +0200
committerraveit65 <[email protected]>2016-07-03 13:30:09 +0200
commit85ee1df4499969dd3c6dee3bd032a18d8bc34999 (patch)
tree6e0119193594dfb17555cd9b35a35b3913510ba2 /backend
parent42d3a6d92a15cebb3fccb4444ad665156d1672ca (diff)
downloadatril-85ee1df4499969dd3c6dee3bd032a18d8bc34999.tar.bz2
atril-85ee1df4499969dd3c6dee3bd032a18d8bc34999.tar.xz
tiff: fix compile warning
taken from: https://git.gnome.org/browse/evince/commit/?id=2059456 https://git.gnome.org/browse/evince/commit/?id=00b5e55
Diffstat (limited to 'backend')
-rw-r--r--backend/tiff/tiff2ps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/tiff/tiff2ps.c b/backend/tiff/tiff2ps.c
index 16537421..3733645d 100644
--- a/backend/tiff/tiff2ps.c
+++ b/backend/tiff/tiff2ps.c
@@ -1131,7 +1131,7 @@ PS_Lvl2page(TIFF2PSContext* ctx, TIFF* tif, uint32 w, uint32 h)
buf_data = (unsigned char *)_TIFFmalloc(chunk_size);
if (!buf_data) {
TIFFError(ctx->filename, "Can't alloc %u bytes for %s.",
- chunk_size, tiled_image ? "tiles" : "strips");
+ (uint) chunk_size, tiled_image ? "tiles" : "strips");
return(FALSE);
}