summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2014-11-14 17:59:40 -0600
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2014-11-14 17:59:40 -0600
commit9c052164611d16b747ac9703482a77878127990b (patch)
treed1da6b8a04d657d3181b362579b50c9ac1866798
parentd4965b401416a6ad7356e17e3f44e10e672c146e (diff)
downloadlibpng-9c052164611d16b747ac9703482a77878127990b.tar.gz
[libpng16] Fix typos in ANNOUNCE and CHANGES
-rw-r--r--ANNOUNCE4
-rw-r--r--CHANGES4
2 files changed, 4 insertions, 4 deletions
diff --git a/ANNOUNCE b/ANNOUNCE
index 7b83f73f5..78d467f7e 100644
--- a/ANNOUNCE
+++ b/ANNOUNCE
@@ -26,12 +26,12 @@ Other information:
Changes since the last public release (1.6.14):
Version 1.6.15beta01 [October 29, 2014]
- Changed "if (!x)" to "if (x == 0)" and "if (x)" to "if (x !== 0)"
+ Changed "if (!x)" to "if (x == 0)" and "if (x)" to "if (x != 0)"
Simplified png_free_data().
Added missing "ptr = NULL" after some instances of png_free().
Version 1.6.15beta02 [November 1, 2014]
- Changed remaining "if (!x)" to "if (x == 0)" and "if (x)" to "if (x !== 0)"
+ Changed remaining "if (!x)" to "if (x == 0)" and "if (x)" to "if (x != 0)"
Version 1.6.15beta03 [November 3, 2014]
Added PNG_USE_ARM_NEON configuration flag (Marcin Juszkiewicz).
diff --git a/CHANGES b/CHANGES
index 3ad7130a1..4ba274dc7 100644
--- a/CHANGES
+++ b/CHANGES
@@ -5034,12 +5034,12 @@ Version 1.6.14 [October 23, 2014]
No changes.
Version 1.6.15beta01 [October 29, 2014]
- Changed "if (!x)" to "if (x == 0)" and "if (x)" to "if (x !== 0)"
+ Changed "if (!x)" to "if (x == 0)" and "if (x)" to "if (x != 0)"
Simplified png_free_data().
Added missing "ptr = NULL" after some instances of png_free().
Version 1.6.15beta02 [November 1, 2014]
- Changed remaining "if (!x)" to "if (x == 0)" and "if (x)" to "if (x !== 0)"
+ Changed remaining "if (!x)" to "if (x == 0)" and "if (x)" to "if (x != 0)"
Version 1.6.15beta03 [November 3, 2014]
Added PNG_USE_ARM_NEON configuration flag (Marcin Juszkiewicz).