about summary refs log tree commit diff
path: root/lib/libppm1.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-05-15 18:06:31 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-05-15 18:06:31 +0000
commitd30f693e75ecf535e6f79c19ef78e34448d32fc7 (patch)
treea23f428542be82b71dc3781d99130a1303d5c49f /lib/libppm1.c
parent5d8e96684997df4783e50599d7de3aef7eaa2103 (diff)
downloadnetpbm-mirror-d30f693e75ecf535e6f79c19ef78e34448d32fc7.tar.gz
netpbm-mirror-d30f693e75ecf535e6f79c19ef78e34448d32fc7.tar.xz
netpbm-mirror-d30f693e75ecf535e6f79c19ef78e34448d32fc7.zip
Fix error message
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1212 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib/libppm1.c')
-rw-r--r--lib/libppm1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libppm1.c b/lib/libppm1.c
index 7b92d3ee..7c7417e9 100644
--- a/lib/libppm1.c
+++ b/lib/libppm1.c
@@ -79,7 +79,7 @@ ppm_readppminitrest(FILE *   const fileP,
     maxval = pm_getuint(fileP);
     if (maxval > PPM_OVERALLMAXVAL)
         pm_error("maxval of input image (%u) is too large.  "
-                 "The maximum allowed by the PPM is %u.",
+                 "The maximum allowed by the PPM format is %u.",
                  maxval, PPM_OVERALLMAXVAL); 
     if (maxval == 0)
         pm_error("maxval of input image is zero.");