about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--doc/HISTORY5
-rw-r--r--lib/util/wordaccess_be_aligned.h2
-rw-r--r--version.mk2
3 files changed, 7 insertions, 2 deletions
diff --git a/doc/HISTORY b/doc/HISTORY
index 0973e010..e5339edf 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,11 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+15.01.23 BJH  Release 10.69.04
+
+              build: fix compile failure in wordint_access_be.h with Bigendian
+              target platforms.  Broken in Netpbm 10.63 (June 2013).
+
 15.01.22 BJH  Release 10.69.03
 
               pnmgamma -srgbtobt709, -bt709tosrgb: fix bug; incorrect output
diff --git a/lib/util/wordaccess_be_aligned.h b/lib/util/wordaccess_be_aligned.h
index 0d5809e6..f3bbb841 100644
--- a/lib/util/wordaccess_be_aligned.h
+++ b/lib/util/wordaccess_be_aligned.h
@@ -24,7 +24,7 @@ bytesToWordint(wordintBytes bytes) {
 static __inline__ void
 wordintToBytes(wordintBytes * const bytesP,
                wordint        const wordInt) {
-    uint16_t const hi = ((wordInt >> 48) & 0xFF)
+    uint16_t const hi = ((wordInt >> 48) & 0xFF);
     uint16_t const mh = ((wordInt >> 32) & 0xFF);
     uint16_t const ml = ((wordInt >> 24) & 0xFF);
     uint16_t const lo = ((wordInt >>  0) & 0xFF);
diff --git a/version.mk b/version.mk
index 091f066d..4c49868c 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 69
-NETPBM_POINT_RELEASE = 3
+NETPBM_POINT_RELEASE = 4