about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--doc/HISTORY7
-rw-r--r--lib/pm.h4
2 files changed, 9 insertions, 2 deletions
diff --git a/doc/HISTORY b/doc/HISTORY
index fd92959e..b816d528 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -6,6 +6,13 @@ CHANGE HISTORY
 
 not yet  BJH  Release 10.41.00
 
+              pamlcolor8.map: Make it a 256 color map sorted by index,
+              per Palm's spec.  Thanks Paul Bolle <pebolle@tiscali.nl>.
+
+              libnetpbm: make all row free operations go through
+              pm_freerow(); change row buffer type from char * to void *
+              for pm_allocrow(), pm_freerow().
+
 07.09.26 BJH  Release 10.40.00
 
               pamfunc: Add -andmask, -ormask, -xormask, -not,
diff --git a/lib/pm.h b/lib/pm.h
index 232fc363..30f126db 100644
--- a/lib/pm.h
+++ b/lib/pm.h
@@ -116,7 +116,7 @@ pm_nextimage(FILE * const file, int * const eofP);
 char** 
 pm_allocarray (int const cols, int const rows, int const size );
 
-char * 
+void * 
 pm_allocrow(unsigned int const cols,
             unsigned int const size);
 
@@ -124,7 +124,7 @@ void
 pm_freearray (char** const its, int const rows);
 
 void 
-pm_freerow(char* const itrow);
+pm_freerow(void * const row);
 
 
 /* Obsolete -- use shhopt instead */