changeset 6552:8cf77ec96009

(SIZE_MAX): Add missing (.
author Simon Josefsson <simon@josefsson.org>
date Wed, 11 Jan 2006 17:12:47 +0000
parents d37637700b4e
children 8041d378a5a1
files lib/ChangeLog lib/stdint_.h
diffstat 2 files changed, 5 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib/ChangeLog
+++ b/lib/ChangeLog
@@ -1,3 +1,7 @@
+2006-01-11  Simon Josefsson  <jas@extundo.com>
+
+	* stdint_.h (SIZE_MAX): Add missing (.
+
 2006-01-10  Bruno Haible  <bruno@clisp.org>
 
 	* argp.h (__const): Remove macro. Use const instead.
--- a/lib/stdint_.h
+++ b/lib/stdint_.h
@@ -245,7 +245,7 @@
 #define SIG_ATOMIC_MAX 127
 
 #ifndef SIZE_MAX /* SIZE_MAX may also be defined in config.h. */
-# define SIZE_MAX (size_t)~(size_t)0)
+# define SIZE_MAX ((size_t)~(size_t)0)
 #endif
 
 /* wchar_t limits already defined in <stddef.h>.  */