about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--analyzer/pamtable.c6
-rw-r--r--doc/HISTORY5
-rw-r--r--version.mk2
3 files changed, 9 insertions, 4 deletions
diff --git a/analyzer/pamtable.c b/analyzer/pamtable.c
index 9422ff19..8ed245fd 100644
--- a/analyzer/pamtable.c
+++ b/analyzer/pamtable.c
@@ -131,18 +131,18 @@ printRow(const struct pam * const pamP,
         unsigned int plane;
 
         if (col > 0)
-            fprintf(ofP, format.interTupleGutter);
+            fputs(format.interTupleGutter, ofP);
 
         for (plane = 0; plane < pamP->depth; ++plane) {
 
             if (plane > 0)
-                fprintf(ofP, format.interSampleGutter);
+                fputs(format.interSampleGutter, ofP);
 
             fprintf(ofP, format.sampleFmt, tupleRow[col][plane]);
         }
     }
 
-    fprintf(ofP, "\n");
+    fputs("\n", ofP);
 }
 
 
diff --git a/doc/HISTORY b/doc/HISTORY
index 0e03374c..af0aa993 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,11 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+17.07.03 BJH  Release 10.79.0-1
+
+              Fix 'format-security' GNU compiler warning.  Introduced in
+              Netpbm 10.79.00 a few days ago.
+
 17.06.30 BJH  Release 10.79.00
 
               Add pamtable .
diff --git a/version.mk b/version.mk
index 987a7c4d..77ee2450 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 79
-NETPBM_POINT_RELEASE = 0
+NETPBM_POINT_RELEASE = 1