[libpng16] Fix typos in ANNOUNCE and CHANGES

This commit is contained in:
Glenn Randers-Pehrson 2014-11-14 17:59:40 -06:00
parent d4965b4014
commit 9c05216461
2 changed files with 4 additions and 4 deletions

View File

@ -26,12 +26,12 @@ Other information:
Changes since the last public release (1.6.14): Changes since the last public release (1.6.14):
Version 1.6.15beta01 [October 29, 2014] 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(). Simplified png_free_data().
Added missing "ptr = NULL" after some instances of png_free(). Added missing "ptr = NULL" after some instances of png_free().
Version 1.6.15beta02 [November 1, 2014] 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] Version 1.6.15beta03 [November 3, 2014]
Added PNG_USE_ARM_NEON configuration flag (Marcin Juszkiewicz). Added PNG_USE_ARM_NEON configuration flag (Marcin Juszkiewicz).

View File

@ -5034,12 +5034,12 @@ Version 1.6.14 [October 23, 2014]
No changes. No changes.
Version 1.6.15beta01 [October 29, 2014] 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(). Simplified png_free_data().
Added missing "ptr = NULL" after some instances of png_free(). Added missing "ptr = NULL" after some instances of png_free().
Version 1.6.15beta02 [November 1, 2014] 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] Version 1.6.15beta03 [November 3, 2014]
Added PNG_USE_ARM_NEON configuration flag (Marcin Juszkiewicz). Added PNG_USE_ARM_NEON configuration flag (Marcin Juszkiewicz).