about summary refs log tree commit diff
path: root/converter
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2022-01-08 22:51:16 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2022-01-08 22:51:16 +0000
commit4c3cda69a612c59bae50f793011a8e1e49c1f602 (patch)
tree5379b4f3257a502720fbb974a7059861a9155b3a /converter
parent6c605ff4ae0b4570877b25a62020510d816322f1 (diff)
downloadnetpbm-mirror-4c3cda69a612c59bae50f793011a8e1e49c1f602.tar.gz
netpbm-mirror-4c3cda69a612c59bae50f793011a8e1e49c1f602.tar.xz
netpbm-mirror-4c3cda69a612c59bae50f793011a8e1e49c1f602.zip
Fix bug in commit moments ago
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4233 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter')
-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);