Make our replacement INT32_MAX always signed

The C standard says that INT32_MAX is supposed to be a signed
integer.  On platforms that have it, we get the correct
platform-defined value.  Our own replacement, however, was
unsigned.  That's going to cause a bug somewhere eventually.
This commit is contained in:
Nick Mathewson 2011-01-12 14:29:38 -05:00
parent d43cba6c69
commit 9fcc14224b

View File

@ -115,7 +115,7 @@ typedef unsigned int uint32_t;
#define UINT32_MAX 0xffffffffu #define UINT32_MAX 0xffffffffu
#endif #endif
#ifndef INT32_MAX #ifndef INT32_MAX
#define INT32_MAX 0x7fffffffu #define INT32_MAX 0x7fffffff
#endif #endif
#endif #endif