From: Paul Eggert Date: Fri, 10 Nov 2006 01:03:39 +0000 (+0000) Subject: * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2d90a49d529516f9b56b944af0cb22c71cb1b1bc;p=pspp * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t. Problem reported by Matthew Woehlke. --- diff --git a/ChangeLog b/ChangeLog index 01a57c4282..3876d745e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-11-09 Paul Eggert + + * lib/stdint_.h (uintmax_t): Fix typo: int64_t -> uint64_t. + Problem reported by Matthew Woehlke. + 2006-11-09 Bruno Haible * lib/tempname.c (gen_tempname): Remove variant that invokes diff --git a/lib/stdint_.h b/lib/stdint_.h index c29108f2ca..a4f9a4cf7b 100644 --- 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