about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--converter/ppm/picttoppm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/ppm/picttoppm.c b/converter/ppm/picttoppm.c
index c2d1ee24..f49201a5 100644
--- a/converter/ppm/picttoppm.c
+++ b/converter/ppm/picttoppm.c
@@ -2438,7 +2438,7 @@ unpackUncompressedBits(FILE *          const ifP,
     unsigned char * linebuf;
 
     if (verbose)
-        pm_message("Bits are compressed");
+        pm_message("Bits are not packed");
 
     MALLOCARRAY(linebuf, rowBytes + 100);
     if (linebuf == NULL)
@@ -2774,7 +2774,7 @@ unpackCompressedBits(FILE *          const ifP,
     unsigned int linebufSize;
 
     if (verbose)
-        pm_message("Bits are compressed");
+        pm_message("Bits are packed");
 
     linebufSize = rowBytes;
     MALLOCARRAY(linebuf, linebufSize);