about summary refs log tree commit diff
path: root/converter/other
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-09-26 19:51:36 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-09-26 19:51:36 +0000
commit6e879ff027c9019c964d15ae0e0c966fc7d1c7a8 (patch)
tree9ec0f11523c96e583a77c4e5b7f5f5747cda86be /converter/other
parent533e5a163abba83d69269053f1cbdb38358bbcb3 (diff)
downloadnetpbm-mirror-6e879ff027c9019c964d15ae0e0c966fc7d1c7a8.tar.gz
netpbm-mirror-6e879ff027c9019c964d15ae0e0c966fc7d1c7a8.tar.xz
netpbm-mirror-6e879ff027c9019c964d15ae0e0c966fc7d1c7a8.zip
Release 10.71.3
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@2635 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'converter/other')
-rw-r--r--converter/other/fitstopnm.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/converter/other/fitstopnm.c b/converter/other/fitstopnm.c
index 181a85ce..9a2859bd 100644
--- a/converter/other/fitstopnm.c
+++ b/converter/other/fitstopnm.c
@@ -57,9 +57,9 @@
 struct cmdlineInfo {
     const char * inputFileName;
     unsigned int image;  /* zero if unspecified */
-    double max;
+    float max;
     unsigned int maxSpec;
-    double min;
+    float min;
     unsigned int minSpec;
     unsigned int scanmax;
     unsigned int printmax;
@@ -668,7 +668,8 @@ convertPpmRaster(FILE *                const ifP,
 -----------------------------------------------------------------------------*/
     unsigned int plane;
 
-    pm_message("writing PPM file");
+    pm_message("Writing PPM file "
+               "(Probably not what you want - consider an -image option)");
 
     for (plane = 0; plane < 3; ++plane) {
         unsigned int row;