diff options
author | Glenn Randers-Pehrson <glennrp at users.sourceforge.net> | 2013-02-17 14:31:00 -0600 |
---|---|---|
committer | Glenn Randers-Pehrson <glennrp at users.sourceforge.net> | 2013-02-17 14:31:00 -0600 |
commit | 9e8fd50d7600f91fc4d3b4c876a3759bc54c2bd9 (patch) | |
tree | 29feb56c0974ceb017825600fa8182058c2fbea6 /pngerror.c | |
parent | ea3288f1c5e549be593b9665e24c1489c9994645 (diff) |
[libpng16] Use parentheses consistently in "#if defined()" tests.
Diffstat (limited to 'pngerror.c')
-rw-r--r-- | pngerror.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pngerror.c b/pngerror.c index 18152d96c..3ee57d051 100644 --- a/pngerror.c +++ b/pngerror.c @@ -844,8 +844,8 @@ png_set_strip_error_numbers(png_structrp png_ptr, png_uint_32 strip_mode) } #endif -#if defined PNG_SIMPLIFIED_READ_SUPPORTED ||\ - defined PNG_SIMPLIFIED_WRITE_SUPPORTED +#if defined(PNG_SIMPLIFIED_READ_SUPPORTED) ||\ + defined(PNG_SIMPLIFIED_WRITE_SUPPORTED) /* Currently the above both depend on SETJMP_SUPPORTED, however it would be * possible to implement without setjmp support just so long as there is some * way to handle the error return here: |