about summary refs log tree commit diff
path: root/converter/other/pnmtopalm
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-09-03 17:25:21 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-09-03 17:25:21 +0000
commitc5b69ed7dadf8de4b1d19cc7617172a0390c1586 (patch)
treeab4e0050882c24e7fca9f402621bb24ce7e8bb7a /converter/other/pnmtopalm
parent8d52ce5e21903e601e6bda24ad715b4a77259009 (diff)
downloadnetpbm-mirror-c5b69ed7dadf8de4b1d19cc7617172a0390c1586.tar.gz
netpbm-mirror-c5b69ed7dadf8de4b1d19cc7617172a0390c1586.tar.xz
netpbm-mirror-c5b69ed7dadf8de4b1d19cc7617172a0390c1586.zip
Release 10.35.31
git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@399 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/pnmtopalm')
-rw-r--r--converter/other/pnmtopalm/pnmtopalm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/other/pnmtopalm/pnmtopalm.c b/converter/other/pnmtopalm/pnmtopalm.c
index 3b9eec8f..f5f6e44a 100644
--- a/converter/other/pnmtopalm/pnmtopalm.c
+++ b/converter/other/pnmtopalm/pnmtopalm.c
@@ -365,7 +365,7 @@ writeCommonHeader(unsigned int         const cols,
         pm_error("Too many columns for Palm Bitmap: %u", cols);
     pm_writebigshort(stdout, cols);    /* width */
     if (rows > USHRT_MAX)
-        pm_error("Too many columns for Palm Bitmap: %u", rows);
+        pm_error("Too many rows for Palm Bitmap: %u", rows);
     pm_writebigshort(stdout, rows);    /* height */
     if (rowbytes > USHRT_MAX)
         pm_error("Too many bytes per row for Palm Bitmap: %u", rowbytes);