about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--converter/other/fitstopnm.c7
-rw-r--r--doc/HISTORY9
-rw-r--r--version.mk2
3 files changed, 14 insertions, 4 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;
diff --git a/doc/HISTORY b/doc/HISTORY
index 4ecca7f0..38f1cbf3 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,8 +4,17 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+15.09.26 BJH  Release 10.71.03
+
+              fitstopnm: Add message saying you're probably making a mistake
+              if you have a 3-D image and don't specify -image.  The third
+              dimension is almost always time in practice.
+
 15.08.02 BJH  Release 10.71.02
 
+              fitstopnm: Fix -min and -max.  Broken in Netpbm 10.39 (June
+              2007).
+
               Pnmtopclxl: fix buffer overrun causing unpredictable behavior.
               (Introduced in Netpbm 10.54 (March 2011).
 
diff --git a/version.mk b/version.mk
index 5f795d57..9089dbdd 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 71
-NETPBM_POINT_RELEASE = 2
+NETPBM_POINT_RELEASE = 3