Fix compiler error with -DDEBUG.

This commit is contained in:
Johns 2012-01-07 03:13:33 +01:00
parent 45a34a3381
commit d6e2d04505

View File

@ -769,7 +769,7 @@ static int AutoCropIsBlackLineY(const uint8_t * data, int length, int stride)
const uint64_t *p;
#ifdef DEBUG
if (data & 0x7 || length & 0x7 || stride & 0x7) {
if ((size_t) data & 0x7 || length & 0x7 || stride & 0x7) {
abort();
}
#endif