summaryrefslogtreecommitdiff
path: root/pngread.c
diff options
context:
space:
mode:
authorGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2015-06-30 10:36:11 -0500
committerGlenn Randers-Pehrson <glennrp at users.sourceforge.net>2015-06-30 10:54:44 -0500
commit9d4ea3014b1edb249cc351e6d6d72d22a96df7ff (patch)
tree6ffce75176e5b9dc12b6fea52d5951fea028cabf /pngread.c
parentf86720c6c06d5298572ccff6439f8b6b3e73225e (diff)
[libpng16] Imported from libpng-1.6.18beta08.tar
Diffstat (limited to 'pngread.c')
-rw-r--r--pngread.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/pngread.c b/pngread.c
index 6775fe5c8..e88151c20 100644
--- a/pngread.c
+++ b/pngread.c
@@ -1043,9 +1043,9 @@ png_read_png(png_structrp png_ptr, png_inforp info_ptr,
/* Tell libpng to strip 16-bit/color files down to 8 bits per color.
*/
if ((transforms & PNG_TRANSFORM_SCALE_16) != 0)
- /* Added at libpng-1.5.4. "strip_16" produces the same result that it
- * did in earlier versions, while "scale_16" is now more accurate.
- */
+ /* Added at libpng-1.5.4. "strip_16" produces the same result that it
+ * did in earlier versions, while "scale_16" is now more accurate.
+ */
#ifdef PNG_READ_SCALE_16_TO_8_SUPPORTED
png_set_scale_16(png_ptr);
#else