about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-06-26 01:58:26 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2007-06-26 01:58:26 +0000
commita06c70d733f46f6bcd4dcd1fa70c2437215c2b15 (patch)
tree14564791540423c97541244f7e11d48363e2014d
parent009d9aaa47db122f8161cd37c227e8d9159f1b1a (diff)
downloadnetpbm-mirror-a06c70d733f46f6bcd4dcd1fa70c2437215c2b15.tar.gz
netpbm-mirror-a06c70d733f46f6bcd4dcd1fa70c2437215c2b15.tar.xz
netpbm-mirror-a06c70d733f46f6bcd4dcd1fa70c2437215c2b15.zip
release 10.38.04
git-svn-id: http://svn.code.sf.net/p/netpbm/code/advanced@327 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--Makefile.version2
-rw-r--r--converter/other/fitstopnm.c1
-rw-r--r--converter/other/pamtofits.c4
-rw-r--r--doc/HISTORY8
4 files changed, 11 insertions, 4 deletions
diff --git a/Makefile.version b/Makefile.version
index 750487b0..194eae42 100644
--- a/Makefile.version
+++ b/Makefile.version
@@ -1,4 +1,4 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 38
-NETPBM_POINT_RELEASE = 03
+NETPBM_POINT_RELEASE = 04
 
diff --git a/converter/other/fitstopnm.c b/converter/other/fitstopnm.c
index 796ca489..b143882b 100644
--- a/converter/other/fitstopnm.c
+++ b/converter/other/fitstopnm.c
@@ -418,6 +418,7 @@ read_val (fp, bitpix, vp)
         else
             lval = c[0]<<24 | c[1]<<16 | c[2]<<8 | c[3];
         *vp = lval;
+        break;
       
     case -32:
         for (i=0; i<4; i++) {
diff --git a/converter/other/pamtofits.c b/converter/other/pamtofits.c
index d0552a5c..ec271ff3 100644
--- a/converter/other/pamtofits.c
+++ b/converter/other/pamtofits.c
@@ -32,8 +32,8 @@
 struct cmdlineInfo {
     const char * inputFileName;
     unsigned int maxSpec;
-    double max;
-    double min;
+    float max;
+    float min;
 };
 
 
diff --git a/doc/HISTORY b/doc/HISTORY
index c88c066e..41368f8d 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,12 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+not yet  BJH  Release 10.38.04
+
+              fitstopnm: fix BITPIX = -32.
+
+              pamtofits: fix -min, -max.
+
 07.05.22 BJH  Release 10.38.03
 
               pamthreshold: fix totally bogus threshold selection with
@@ -511,7 +517,7 @@ CHANGE HISTORY
 
               ppmglobe: fix bug: always says stripcount is zero
               because it looks at the wrong argument.  Thanks Urs Enke
-              <urs.enke@rwth-aachen.de>.
+              <urs.enke@web.de>.
 
               pnmtotiffcmyk: Fix inttypes conflict on AIX.