emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/trunk r106362: * inc/stdint.h (UINT64_MAX,


From: Christoph Scholtes
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r106362: * inc/stdint.h (UINT64_MAX, UINT32_MAX): Fix values.
Date: Sun, 13 Nov 2011 07:43:13 -0700
User-agent: Bazaar (2.3.1)

------------------------------------------------------------
revno: 106362
committer: Christoph Scholtes <address@hidden>
branch nick: trunk
timestamp: Sun 2011-11-13 07:43:13 -0700
message:
  * inc/stdint.h (UINT64_MAX, UINT32_MAX): Fix values.
modified:
  nt/ChangeLog
  nt/inc/stdint.h
=== modified file 'nt/ChangeLog'
--- a/nt/ChangeLog      2011-11-05 22:33:44 +0000
+++ b/nt/ChangeLog      2011-11-13 14:43:13 +0000
@@ -1,3 +1,7 @@
+2011-11-13  Christoph Scholtes  <address@hidden>
+
+       * inc/stdint.h (UINT64_MAX, UINT32_MAX): Fix values.
+
 2011-11-05  Christoph Scholtes  <address@hidden>
 
        * inc/stdint.h (UINT64_MAX, UINT64_MIN, INT64_MIN, UINTMAX_MAX)

=== modified file 'nt/inc/stdint.h'
--- a/nt/inc/stdint.h   2011-11-05 22:33:44 +0000
+++ b/nt/inc/stdint.h   2011-11-13 14:43:13 +0000
@@ -29,7 +29,7 @@
 
 #ifdef _WIN64
 typedef __int64 intptr_t;
-#define UINT64_MAX 18446744073709551616
+#define UINT64_MAX 18446744073709551615
 #define UINT64_MIN 0
 /* "i64" is the non-standard suffix used by MSVC for 64-bit constants.  */
 #define INT64_MAX 9223372036854775807i64
@@ -42,7 +42,7 @@
 #else
 typedef int intptr_t;
 typedef unsigned int uint32_t;
-#define UINT32_MAX 4294967296
+#define UINT32_MAX 4294967295
 #define UINT32_MIN 0
 #define INT32_MAX 2147483647
 #define INT32_MIN (~INT32_MAX)


reply via email to

[Prev in Thread] Current Thread [Next in Thread]