diff options
author | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2023-09-16 00:57:24 +0000 |
---|---|---|
committer | giraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8> | 2023-09-16 00:57:24 +0000 |
commit | 2d18206ae939ce1d91647b0c771beaea32818329 (patch) | |
tree | 0c73af55b5c36e142a0415df8a61a254a05efd92 /lib | |
parent | 260f052d32be15737d8e3964ef0e6f72abf1efcc (diff) | |
download | netpbm-mirror-2d18206ae939ce1d91647b0c771beaea32818329.tar.gz netpbm-mirror-2d18206ae939ce1d91647b0c771beaea32818329.tar.xz netpbm-mirror-2d18206ae939ce1d91647b0c771beaea32818329.zip |
Fix error message
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@4658 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libpbm2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libpbm2.c b/lib/libpbm2.c index 2a2e2aac..244d5835 100644 --- a/lib/libpbm2.c +++ b/lib/libpbm2.c @@ -53,7 +53,7 @@ pbm_readpbminitrest( FILE * const file, if (*colsP < 0) pm_error("Number of columns in header is too large."); if (*rowsP < 0) - pm_error("Number of columns in header is too large."); + pm_error("Number of rows in header is too large."); } |