Index: src/main/native/gl/shared/pngdecoder.h =================================================================== --- src/main/native/gl/shared/pngdecoder.h (revision 529204) +++ src/main/native/gl/shared/pngdecoder.h (working copy) @@ -60,8 +60,8 @@ unsigned char *inputBuffer; size_t rowbytes; // Bytes for one row of data - int width; - int height; + png_uint_32 width; + png_uint_32 height; int channels; int bitDepth; @@ -72,7 +72,7 @@ boolean doneDecoding; int updateFromScanline; // Current row - int numScanlines; // How much we decoded during this call of processData + unsigned int numScanlines; // How much we decoded during this call of processData // JNI-related vars JNIEnv *env;