[or-cvs] [tor/maint-0.2.2] Make our replacement INT32_MAX always signed

nickm at torproject.org nickm at torproject.org
Wed Jan 12 19:35:40 UTC 2011


Author: Nick Mathewson <nickm at torproject.org>
Date: Wed, 12 Jan 2011 14:29:38 -0500
Subject: Make our replacement INT32_MAX always signed
Commit: 9fcc14224b689dff1be8336feeeb563199694c27

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.
---
 src/common/torint.h |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/common/torint.h b/src/common/torint.h
index 4970dcd..2a9fba6 100644
--- a/src/common/torint.h
+++ b/src/common/torint.h
@@ -115,7 +115,7 @@ typedef unsigned int uint32_t;
 #define UINT32_MAX 0xffffffffu
 #endif
 #ifndef INT32_MAX
-#define INT32_MAX 0x7fffffffu
+#define INT32_MAX 0x7fffffff
 #endif
 #endif
 
-- 
1.7.1



More information about the tor-commits mailing list