This commit was generated by cvs2svn to compensate for changes in r118765,

which included commits to RCS files with non-trunk default branches.
This commit is contained in:
Nate Lawson 2003-08-11 05:54:31 +00:00
commit 5f06786496

View File

@ -452,10 +452,10 @@ AcpiOsGetLine (
ACPI_STATUS
AcpiOsMapMemory (
ACPI_PHYSICAL_ADDRESS where,
UINT32 length,
ACPI_SIZE length,
void **there)
{
*there = (void *) (UINT32) where;
*there = (void *) (uintptr_t) where;
return AE_OK;
}