summaryrefslogtreecommitdiff
path: root/tools/rgb2ycbcr.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/rgb2ycbcr.c')
-rw-r--r--tools/rgb2ycbcr.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/rgb2ycbcr.c b/tools/rgb2ycbcr.c
index 84e6f57a..de23594b 100644
--- a/tools/rgb2ycbcr.c
+++ b/tools/rgb2ycbcr.c
@@ -304,8 +304,8 @@ tiffcvt(TIFF* in, TIFF* out)
if (!width || !height || pixel_count / width != height) {
TIFFError(TIFFFileName(in),
"Malformed input file; "
- "can't allocate buffer for raster of %lux%lu size",
- (unsigned long)width, (unsigned long)height);
+ "can't allocate buffer for raster of %"PRIu32"x%"PRIu32" size",
+ width, height);
return 0;
}
@@ -313,9 +313,9 @@ tiffcvt(TIFF* in, TIFF* out)
"raster buffer");
if (raster == 0) {
TIFFError(TIFFFileName(in),
- "Failed to allocate buffer (%lu elements of %lu each)",
- (unsigned long)pixel_count,
- (unsigned long)sizeof(uint32_t));
+ "Failed to allocate buffer (%zu elements of %zu each)",
+ pixel_count,
+ sizeof(uint32_t));
return (0);
}