appease MSVC (doesnt like unary minus of unsigned ints)

This commit is contained in:
Nuno Lopes 2012-07-08 15:19:41 -04:00
parent a76878cd59
commit e6d9cd983b

View File

@ -330,7 +330,7 @@ END_EXTERN_C()
if (idx-1 > LONG_MAX) { /* overflow */ \
break; \
} \
idx = -idx; \
idx = 0 - idx; \
} else if (idx > LONG_MAX) { /* overflow */ \
break; \
} \