about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--other/pamdepth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/other/pamdepth.c b/other/pamdepth.c
index abe8aac7..cf7739f5 100644
--- a/other/pamdepth.c
+++ b/other/pamdepth.c
@@ -63,8 +63,8 @@ parseCommandLine(int argc, const char ** argv,
             pm_error("New maxval must be at least 1.  You specified %d",
                      intval);
         else if (intval > PNM_OVERALLMAXVAL)
-            pm_error("newmaxval (%d) is too large.\n"
-                     "The maximum allowed by the PNM formats is %d.",
+            pm_error("newmaxval (%d) is too large.  "
+                     "The maximum allowed by the PNM formats is %u.",
                      intval, PNM_OVERALLMAXVAL);
         else
             cmdlineP->newMaxval = intval;