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;
This commit is contained in:
aystarik 2005-06-29 19:03:33 +00:00
parent c7e5267a5e
commit 7e24bf0eeb

View File

@ -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;