about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-01-25 18:49:20 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2015-01-25 18:49:20 +0000
commit76c889164cc365666418022e0d36bd711584feda (patch)
tree09c417369580ba186ae7c25d21b08dc931a93536
parent2cab22b7c059b5e2bffe917cdd4a9d7d24e24f9a (diff)
downloadnetpbm-mirror-76c889164cc365666418022e0d36bd711584feda.tar.gz
netpbm-mirror-76c889164cc365666418022e0d36bd711584feda.tar.xz
netpbm-mirror-76c889164cc365666418022e0d36bd711584feda.zip
Fix type mismatch
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@2402 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-rw-r--r--converter/other/giftopnm.c2
-rw-r--r--doc/HISTORY4
2 files changed, 5 insertions, 1 deletions
diff --git a/converter/other/giftopnm.c b/converter/other/giftopnm.c
index 9f4bc8a1..96a6fc4c 100644
--- a/converter/other/giftopnm.c
+++ b/converter/other/giftopnm.c
@@ -365,7 +365,7 @@ getDataBlock(FILE *          const ifP,
         pm_message("EOF or error in reading DataBlock size from file.  %s",
                    error);
         pm_strfree(error);
-        *errorP = FALSE;
+        *errorP = NULL;
         *eofP = TRUE;
         *lengthP = 0;
     } else {
diff --git a/doc/HISTORY b/doc/HISTORY
index 47961392..3256d5fb 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -31,6 +31,10 @@ not yet  BJH  Release 10.70.00
               internal header file pm_c_util.h.  Introduced in Netpbm
               10.69 (December 2014).
 
+              build: fix incompatible type compilation error in giftopnm.
+              Broken in Netpbm 10.38 (March 2007) (but obviously manifests
+              only in recent build environments).
+
               build: fix compile failure in wordint_access_be.h with Bigendian
               target platforms.  Broken in Netpbm 10.63 (June 2013).