* lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Nov 2006 01:03:39 +0000 (01:03 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 10 Nov 2006 01:03:39 +0000 (01:03 +0000)
Problem reported by Matthew Woehlke.

ChangeLog
lib/stdint_.h

index 01a57c42820a870d2631601a30375910bc921b22..3876d745e42da068f841eced7a8fdeab35b5ab8f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2006-11-09  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t.
+       Problem reported by Matthew Woehlke.
+
 2006-11-09  Bruno Haible  <bruno@clisp.org>
 
        * lib/tempname.c (gen_tempname): Remove variant that invokes
index c29108f2cac3149de7dab160d92a3dc8ad1c07ea..a4f9a4cf7b0378bfc55b87becf14522c09471bd2 100644 (file)
 #undef uintmax_t
 #if @HAVE_UNSIGNED_LONG_LONG_INT@ && ULONG_MAX >> 31 == 1
 # define uintmax_t unsigned long long int
-#elif defined int64_t
+#elif defined uint64_t
 # define uintmax_t uint64_t
 #else
 # define uintmax_t unsigned long int