diff lib/stdint_.h @ 7631:dea67355b192

* lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t. Problem reported by Matthew Woehlke.
author Paul Eggert <eggert@cs.ucla.edu>
date Fri, 10 Nov 2006 01:03:39 +0000
parents 62249b8c227f
children b6376840b47b
line wrap: on
line diff
--- a/lib/stdint_.h
+++ b/lib/stdint_.h
@@ -230,7 +230,7 @@
 #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