From 83923c9a4b4ce24b4d54db11a2495e51b50adb14 Mon Sep 17 00:00:00 2001 From: Marcel Telka Date: Fri, 15 Jul 2005 03:49:53 +0000 Subject: [PATCH] 2005-07-15 Marcel Telka * acinclude.m4 (AX_CREATE_STDINT_H): Fixed typo (unsinged -> unsigned). git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@658 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- include/ChangeLog | 4 ++++ include/NEWS | 1 + include/acinclude.m4 | 2 +- 3 files changed, 6 insertions(+), 1 deletion(-) 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;