mirror of
https://github.com/acpica/acpica/
synced 2025-01-18 07:29:20 +03:00
Use NATIVE_CHAR for strings, changed INTx to UINTx
date 2000.08.14.18.18.00; author rmoore1; state Exp;
This commit is contained in:
parent
639059e535
commit
b3fdb99684
@ -296,7 +296,7 @@ AcpiNsRootInitialize (void)
|
||||
goto UnlockAndExit;
|
||||
}
|
||||
|
||||
STRCPY ((INT8 *) ObjDesc->String.Pointer, InitVal->Val);
|
||||
STRCPY (ObjDesc->String.Pointer, InitVal->Val);
|
||||
break;
|
||||
|
||||
|
||||
@ -392,7 +392,7 @@ UnlockAndExit:
|
||||
ACPI_STATUS
|
||||
AcpiNsLookup (
|
||||
ACPI_GENERIC_STATE *ScopeInfo,
|
||||
INT8 *Pathname,
|
||||
NATIVE_CHAR *Pathname,
|
||||
OBJECT_TYPE_INTERNAL Type,
|
||||
OPERATING_MODE InterpreterMode,
|
||||
UINT32 Flags,
|
||||
@ -606,7 +606,7 @@ AcpiNsLookup (
|
||||
|
||||
else if (*Pathname == AML_MULTI_NAME_PREFIX_OP)
|
||||
{
|
||||
NumSegments = (INT32)* (UINT8 *) ++Pathname;
|
||||
NumSegments = (UINT32)* (UINT8 *) ++Pathname;
|
||||
|
||||
/* point to first segment */
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user