[libpng16] Eliminated another warning from the Intel C compiler.

This commit is contained in:
John Bowler 2013-03-10 21:40:27 -05:00 committed by Glenn Randers-Pehrson
parent 2286a7cef4
commit caa3f296df
3 changed files with 3 additions and 3 deletions

View File

@ -107,7 +107,7 @@ Version 1.6.1beta08 [March 7, 2013]
Use copy_if_different in the CREATE_SYMLINK macro. Use copy_if_different in the CREATE_SYMLINK macro.
Version 1.6.1beta09 [March 11, 2013] Version 1.6.1beta09 [March 11, 2013]
Eliminated a warning from the Intel C compiler. The warning is Eliminated two warnings from the Intel C compiler. The warnings are
technically valid, although a reasonable treatment of division would technically valid, although a reasonable treatment of division would
show it to be incorrect. show it to be incorrect.

View File

@ -4463,7 +4463,7 @@ Version 1.6.1beta08 [March 7, 2013]
Use copy_if_different in the CREATE_SYMLINK macro. Use copy_if_different in the CREATE_SYMLINK macro.
Version 1.6.1beta09 [March 11, 2013] Version 1.6.1beta09 [March 11, 2013]
Eliminated a warning from the Intel C compiler. The warning is Eliminated two warnings from the Intel C compiler. The warnings are
technically valid, although a reasonable treatment of division would technically valid, although a reasonable treatment of division would
show it to be incorrect. show it to be incorrect.

View File

@ -3397,7 +3397,7 @@ png_combine_row(png_const_structrp png_ptr, png_bytep dp, int display)
png_uint_16p dp16 = png_aligncast(png_uint_16p, dp); png_uint_16p dp16 = png_aligncast(png_uint_16p, dp);
png_const_uint_16p sp16 = png_aligncastconst( png_const_uint_16p sp16 = png_aligncastconst(
png_const_uint_16p, sp); png_const_uint_16p, sp);
unsigned int skip = (bytes_to_jump-bytes_to_copy) / size_t skip = (bytes_to_jump-bytes_to_copy) /
(sizeof (png_uint_16)); (sizeof (png_uint_16));
do do