From 7e24bf0eebd3e6745a3572250c15c9f8f0ee5db5 Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 19:03:33 +0000 Subject: [PATCH] STRLEN returns NATIVE_UINT, so fix places where people assume it returns 32 bits. parse structs also changed to use NATIVE types date 2001.02.15.00.11.00; author agrover; state Exp; --- source/components/utilities/utclib.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/components/utilities/utclib.c b/source/components/utilities/utclib.c index c36f76938..bc77dd64a 100644 --- a/source/components/utilities/utclib.c +++ b/source/components/utilities/utclib.c @@ -1,7 +1,7 @@ /****************************************************************************** * * Module Name: cmclib - Local implementation of C library functions - * $Revision: 1.31 $ + * $Revision: 1.33 $ * *****************************************************************************/ @@ -9,7 +9,7 @@ * * 1. Copyright Notice * - * Some or all of this work - Copyright (c) 1999, 2000, Intel Corp. + * Some or all of this work - Copyright (c) 1999, 2000, 2001, Intel Corp. * All rights reserved. * * 2. License @@ -767,7 +767,7 @@ AcpiCmStrstr ( * ******************************************************************************/ -UINT32 +NATIVE_UINT AcpiCmStrtoul ( const NATIVE_CHAR *String, NATIVE_CHAR **Terminator, @@ -777,7 +777,7 @@ AcpiCmStrtoul ( UINT32 index; UINT32 sign; const NATIVE_CHAR *StringStart; - UINT32 ReturnValue = 0; + NATIVE_UINT ReturnValue = 0; ACPI_STATUS Status = AE_OK;