[libpng15] Fixed a spelling error.

This commit is contained in:
Glenn Randers-Pehrson 2011-10-27 22:09:22 -05:00
parent c94b996af8
commit 1876366b17

View File

@ -2881,7 +2881,7 @@ png_combine_row(png_structp png_ptr, png_bytep dp, int display)
* (shift >= 32) ? (a >> (shift-32)) : (b >> shift) * (shift >= 32) ? (a >> (shift-32)) : (b >> shift)
* *
* Produces warnings with values of 'shift' in the range 33 to 63 * Produces warnings with values of 'shift' in the range 33 to 63
* because the right hand side of the ?: expression is evalulated by * because the right hand side of the ?: expression is evaluated by
* the compiler even though it isn't used. Microsoft Visual C (various * the compiler even though it isn't used. Microsoft Visual C (various
* versions) and the Intel C compiler are known to do this. To avoid * versions) and the Intel C compiler are known to do this. To avoid
* this the following macros are used in 1.5.6. This is a temporary * this the following macros are used in 1.5.6. This is a temporary