about summary refs log tree commit diff
path: root/converter/ppm/ppmtoyuv.c
diff options
context:
space:
mode:
Diffstat (limited to 'converter/ppm/ppmtoyuv.c')
-rw-r--r--converter/ppm/ppmtoyuv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/ppm/ppmtoyuv.c b/converter/ppm/ppmtoyuv.c
index 7d843cc0..8029083a 100644
--- a/converter/ppm/ppmtoyuv.c
+++ b/converter/ppm/ppmtoyuv.c
@@ -44,7 +44,7 @@ char **argv;
 
     if (cols % 2 != 0)
         pm_error("Image must have even number of columns.\n"
-                 "This image is %d columns wide.  Try Pnmcut.", cols);
+                 "This image is %u columns wide.  Try Pamcut.", cols);
 
 	pixelrow = ((pixel*) pm_allocrow( cols, sizeof(pixel) ));
 	yuvbuf = (unsigned char *) pm_allocrow( cols, 2 );