[libpng16] Fixed a harmless typo in pngwutil.c
This commit is contained in:
parent
192e92d681
commit
5d7c7d5132
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user