From 67c5ea8b97719381fcfe399d9e31e79014253b96 Mon Sep 17 00:00:00 2001 From: giraffedata Date: Tue, 28 Aug 2007 03:19:19 +0000 Subject: Fix typo in error message git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@388 9d0c8265-081b-0410-96cb-a4ca84ce46f8 --- converter/other/pnmtopalm/pnmtopalm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'converter/other') 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); -- cgit 1.4.1