summaryrefslogtreecommitdiff
path: root/libtiff/tif_predict.c
diff options
context:
space:
mode:
authorBob Friesenhahn <bfriesen@simple.dallas.tx.us>2008-12-31 23:48:01 +0000
committerBob Friesenhahn <bfriesen@simple.dallas.tx.us>2008-12-31 23:48:01 +0000
commit953d02c32d998c499a0900007e9979681a1c2994 (patch)
tree479c10f674ec86611df7dc243212dd3070c8edb1 /libtiff/tif_predict.c
parent968401fdf3a334747f92fd22e1131b213d734bac (diff)
downloadlibtiff-git-953d02c32d998c499a0900007e9979681a1c2994.tar.gz
* libtiff/tiffio.h: GCC will now validate format specifications
for TIFFError(), TIFFErrorExt(), TIFFWarning(), and TIFFWarningExt() in order to reveal bugs. * Many fixes throughout to work better as a 64-bit build.
Diffstat (limited to 'libtiff/tif_predict.c')
-rw-r--r--libtiff/tif_predict.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libtiff/tif_predict.c b/libtiff/tif_predict.c
index 778145a7..e520f31b 100644
--- a/libtiff/tif_predict.c
+++ b/libtiff/tif_predict.c
@@ -1,4 +1,4 @@
-/* $Id: tif_predict.c,v 1.29 2008-01-01 15:41:22 fwarmerdam Exp $ */
+/* $Id: tif_predict.c,v 1.30 2008-12-31 23:48:02 bfriesen Exp $ */
/*
* Copyright (c) 1988-1997 Sam Leffler
@@ -546,7 +546,7 @@ PredictorEncodeTile(TIFF* tif, uint8* bp0, tmsize_t cc0, uint16 s)
if( working_copy == NULL )
{
TIFFErrorExt(tif->tif_clientdata, module,
- "Out of memory allocating %d byte temp buffer.",
+ "Out of memory allocating " TIFF_SSIZE_FORMAT " byte temp buffer.",
cc0 );
return 0;
}