This is the mail archive of the cygwin-developers mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[COMMITTED 64bit] missing parenthesis in stdint.h


I committed the attached patch as obvious.


Yaakov
2013-04-21  Yaakov Selkowitz  <yselkowitz@...>

	* include/stdint.h (INTPTR_MAX): Fix missing parenthesis.

Index: include/stdint.h
===================================================================
RCS file: /cvs/src/src/winsup/cygwin/include/stdint.h,v
retrieving revision 1.14.2.2
diff -u -p -r1.14.2.2 stdint.h
--- include/stdint.h	21 Jan 2013 13:52:13 -0000	1.14.2.2
+++ include/stdint.h	22 Apr 2013 02:21:43 -0000
@@ -192,7 +192,7 @@ typedef unsigned long long uintmax_t;
 
 #if __WORDSIZE == 64
 #define INTPTR_MIN (-__I64(9223372036854775807) - 1)
-#define INTPTR_MAX (__I64(9223372036854775807)
+#define INTPTR_MAX (__I64(9223372036854775807))
 #define UINTPTR_MAX (__U64(18446744073709551615))
 #else
 #define INTPTR_MIN (-2147483647 - 1)

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]