about summary refs log tree commit diff
path: root/converter/other/tifftopnm.c
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2017-04-15 18:16:02 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2017-04-15 18:16:02 +0000
commit808c5dec708d56b46fcce796816347f4bc81fa87 (patch)
treef1cf623b300cf10c0a084c5d35a75c855ff9ac21 /converter/other/tifftopnm.c
parentac111dadc66f9b12860efc6f27df484f4d636ffa (diff)
downloadnetpbm-mirror-808c5dec708d56b46fcce796816347f4bc81fa87.tar.gz
netpbm-mirror-808c5dec708d56b46fcce796816347f4bc81fa87.tar.xz
netpbm-mirror-808c5dec708d56b46fcce796816347f4bc81fa87.zip
Fix error message
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2946 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other/tifftopnm.c')
-rw-r--r--converter/other/tifftopnm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/converter/other/tifftopnm.c b/converter/other/tifftopnm.c
index e72aff5e..c1e7af85 100644
--- a/converter/other/tifftopnm.c
+++ b/converter/other/tifftopnm.c
@@ -191,7 +191,7 @@ getBps(TIFF *           const tif,
 
     if (bps < 1 || (bps > 8 && bps != 16 && bps != 32))
         pm_error("This program can process Tiff images with only "
-                 "1-8 or 16 bits per sample.  The input Tiff image "
+                 "1-8 or 16 or 32 bits per sample.  The input Tiff image "
                  "has %hu bits per sample.", bps);
     else
         *bpsP = bps;