Fix for invalid large array index on 64-bit systems.

This problem was introduced in 20080514 as a result of the elimination
of the ACPI_NATIVE_UINT type. Code uses a negative array index, which
should be eliminated.
This commit is contained in:
Robert Moore 2008-05-21 11:02:31 -07:00
parent d6b7ac2fe2
commit 9fa368ff7b

View File

@ -899,7 +899,7 @@ AcpiExDumpOperands (
const char *ModuleName,
UINT32 LineNumber)
{
UINT32 i;
INT32 i;
ACPI_FUNCTION_NAME (ExDumpOperands);