From: Ulrich Drepper Date: Sat, 25 Apr 2009 07:12:27 +0000 (+0000) Subject: * sysdeps/generic/stdint.h (WINT_MAX): Define as 2147483647 since X-Git-Tag: cvs/fedora-glibc-20090427T1419~22 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=db6edfb341b4d15a24c80bf4113462203bd2dfc8;p=thirdparty%2Fglibc.git * sysdeps/generic/stdint.h (WINT_MAX): Define as 2147483647 since this is the maximum UCS4 value. --- diff --git a/ChangeLog b/ChangeLog index fd2c66a7cf9..2d0c7cc99ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-04-25 Ulrich Drepper + + * sysdeps/generic/stdint.h (WINT_MAX): Define as 2147483647 since + this is the maximum UCS4 value. + 2009-04-24 Ulrich Drepper [BZ #10093] diff --git a/sysdeps/generic/stdint.h b/sysdeps/generic/stdint.h index 2c729ad2f14..98aaec1212c 100644 --- a/sysdeps/generic/stdint.h +++ b/sysdeps/generic/stdint.h @@ -277,7 +277,7 @@ typedef unsigned long long int uintmax_t; /* Limits of `wint_t'. */ # define WINT_MIN (0u) -# define WINT_MAX (4294967295u) +# define WINT_MAX (2147483647) #endif /* C++ && limit macros */