[libpng16] Fixed misplaced brackets in earlier patch to pngpriv.h

This commit is contained in:
John Bowler 2014-06-24 19:42:03 -05:00 committed by Glenn Randers-Pehrson
parent 910aaadddb
commit c45f1223cb

View File

@ -123,7 +123,7 @@
* Note that gcc-4.9 defines __ARM_NEON instead of __ARM_NEON__, so we
* check both variants.
*/
# if defined(__ARM_NEON__) || defined(__ARM_NEON) && \
# if (defined(__ARM_NEON__) || defined(__ARM_NEON)) && \
defined(PNG_ALIGNED_MEMORY_SUPPORTED)
# define PNG_ARM_NEON_OPT 2
# else