about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--doc/HISTORY8
-rwxr-xr-xeditor/pnmquantall4
-rw-r--r--version.mk2
3 files changed, 8 insertions, 6 deletions
diff --git a/doc/HISTORY b/doc/HISTORY
index 560c04c2..65b64783 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,14 +4,16 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+16.09.02 BJH  Release 10.75.03
+
+              pnmquantall: Fix incorrect handling of when the Pnmremap or
+              the final rename fails.
+
 16.09.01 BJH  Release 10.75.02
 
               pnmquantall: Fix failure when temporary file location is
               not the same filesystem as the output file.
 
-              pnmquantall: Fix incorrect handling of when the Pnmremap or
-              the final rename fails.
-
               Build: tifftopnm.c: fix undefined WIFSIGNALED, etc. in 
 
 16.08.13 BJH  Release 10.75.01
diff --git a/editor/pnmquantall b/editor/pnmquantall
index 274ce62d..d268227d 100755
--- a/editor/pnmquantall
+++ b/editor/pnmquantall
@@ -170,7 +170,7 @@ sub remapFiles($$$$) {
             my $pnmremapTermStatus = system($pnmremapCmd);
 
             if ($pnmremapTermStatus != 0) {
-                $errorR =
+                $$errorR =
                     "Shell command to quantize '$inFileName'  failed:  " .
                     "'$pnmremapCmd'";
             } else {
@@ -178,7 +178,7 @@ sub remapFiles($$$$) {
 
                 unlink($newFileName);
                 File::Copy::move($outputFileName, $newFileName)
-                    or $errorR = "Rename to '$newFileName' failed.";
+                    or $$errorR = "Rename to '$newFileName' failed.";
             }
         }
         unlink($outputFileName);  # In case something failed
diff --git a/version.mk b/version.mk
index bd5a39ab..2e1fd526 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 75
-NETPBM_POINT_RELEASE = 2
+NETPBM_POINT_RELEASE = 3