aboutsummaryrefslogtreecommitdiff
path: root/pngwutil.c
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2016-07-13 14:45:10 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2016-07-13 14:45:10 -0500
commit5d7c7d51326fda504aa7f8afe8ed155c13b55a48 (patch)
tree13579dc3cede862537df86fabd101c1fc36ff82e /pngwutil.c
parent192e92d6818846f49894e5a9f038150d3e3c5872 (diff)
downloadlibpng-5d7c7d51326fda504aa7f8afe8ed155c13b55a48.tar.gz
[libpng16] Fixed a harmless typo in pngwutil.c
Diffstat (limited to 'pngwutil.c')
-rw-r--r--pngwutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pngwutil.c b/pngwutil.c
index 53a2eca4a..7d24db30c 100644
--- a/pngwutil.c
+++ b/pngwutil.c
@@ -2684,7 +2684,7 @@ png_write_find_filter(png_structrp png_ptr, png_row_infop row_info)
}
/* Paeth filter */
- if ((filter_to_do == PNG_FILTER_PAETH) != 0)
+ if (filter_to_do == PNG_FILTER_PAETH)
{
png_setup_paeth_row_only(png_ptr, bpp, row_bytes);
best_row = png_ptr->try_row;