diff --git a/include/ChangeLog b/include/ChangeLog index eda78a4c..dfa63d4c 100644 --- a/include/ChangeLog +++ b/include/ChangeLog @@ -1,3 +1,7 @@ +2005-07-15 Marcel Telka + + * acinclude.m4 (AX_CREATE_STDINT_H): Fixed typo (unsinged -> unsigned). + 2005-07-14 Marcel Telka * acinclude.m4 (AX_CREATE_STDINT_H): Updated to version from ac-archive 0.5.63. diff --git a/include/NEWS b/include/NEWS index 4a9c5b20..548726f5 100644 --- a/include/NEWS +++ b/include/NEWS @@ -4,6 +4,7 @@ include-0.4.1: * Updated stdint.h support from latest ac-archive package for better conformance with SUSv3 standard. + * Fixed typo (compiler error) in common stdint.h implementation. include-0.4 (2005-07-12): diff --git a/include/acinclude.m4 b/include/acinclude.m4 index bf519c6d..3560ee63 100644 --- a/include/acinclude.m4 +++ b/include/acinclude.m4 @@ -552,7 +552,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;