From: Niels Möller Date: Wed, 4 Jun 2014 17:34:11 +0000 (+0200) Subject: Fix typo in AX_CREATE_STDINT_H macro. X-Git-Tag: nettle_3.0_release_20140607~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5792d027e3a5477ea9a8fb124eea6c994048be3b;p=thirdparty%2Fnettle.git Fix typo in AX_CREATE_STDINT_H macro. --- diff --git a/ChangeLog b/ChangeLog index 5f718808..67a7119c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2014-06-04 Niels Möller + + * aclocal.m4 (ac_stdint): Fixed "unsinged" typo, spotted by Andy + Goth. + 2014-06-01 Niels Möller * x86_64/gcm-hash8.asm: Pass correct argument count to W64_EXIT. diff --git a/aclocal.m4 b/aclocal.m4 index 4e23ef8d..b77b8863 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -1164,7 +1164,7 @@ typedef unsigned long uintmax_t; #define __intptr_t_defined /* we encourage using "long" to store pointer values, never use "int" ! */ #if _STDINT_LONG_MODEL+0 == 242 || _STDINT_LONG_MODEL+0 == 484 -typedef unsinged int uintptr_t; +typedef unsigned int uintptr_t; typedef int intptr_t; #elif _STDINT_LONG_MODEL+0 == 244 || _STDINT_LONG_MODEL+0 == 444 typedef unsigned long uintptr_t;