about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-05-18 00:02:55 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-05-18 00:02:55 +0000
commit80e6fa2148ed36dcd961275d9a1e7f8d0f6ecbdf (patch)
treeaa70981bce632192cc40f43308ef53687a7e2dec
parent5f13a6b02d12c133ba0052b10ced51a13157773e (diff)
downloadnetpbm-mirror-80e6fa2148ed36dcd961275d9a1e7f8d0f6ecbdf.tar.gz
netpbm-mirror-80e6fa2148ed36dcd961275d9a1e7f8d0f6ecbdf.tar.xz
netpbm-mirror-80e6fa2148ed36dcd961275d9a1e7f8d0f6ecbdf.zip
fix error message
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2494 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--converter/pbm/pbmtoxbm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/converter/pbm/pbmtoxbm.c b/converter/pbm/pbmtoxbm.c
index bb41d174..14c6b85e 100644
--- a/converter/pbm/pbmtoxbm.c
+++ b/converter/pbm/pbmtoxbm.c
@@ -257,7 +257,7 @@ puttermX10(void) {
                     itemBuff[i], 
                     (i + 2 >= itemCnt) ? "" : ",");
         if (rc < 0)        
-            pm_error("Error writing Item %u of X10 bitmap raster.  "
+            pm_error("Error writing Item %u at end of X10 bitmap raster.  "
                      "printf() failed with errno %d (%s)",
                      i, errno, strerror(errno));
     }
@@ -279,7 +279,7 @@ puttermX11(void) {
                     (i + 1 >= itemCnt) ? "" : ",");
 
         if (rc < 0)        
-            pm_error("Error writing Item %u of X11 bitmap raster.  "
+            pm_error("Error writing Item %u at end of X11 bitmap raster.  "
                      "printf() failed with errno %d (%s)",
                      i, errno, strerror(errno));
     }