aboutsummaryrefslogtreecommitdiff
path: root/sys/contrib
diff options
context:
space:
mode:
authorNate Lawson <njl@FreeBSD.org>2003-08-11 05:54:31 +0000
committerNate Lawson <njl@FreeBSD.org>2003-08-11 05:54:31 +0000
commit5f06786496ef5a97007cb7392a3c919c01f78441 (patch)
treeeab996b447bfd045298969a67f4cb7f565da46bb /sys/contrib
parentcebde069783fcf0b43d9342c60ed0a6206b8706f (diff)
parentfcf000c13c8f0a081758ed40a741d2f37a06151b (diff)
Notes
Diffstat (limited to 'sys/contrib')
-rw-r--r--sys/contrib/dev/acpica/osunixxf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/contrib/dev/acpica/osunixxf.c b/sys/contrib/dev/acpica/osunixxf.c
index ecb72288cef6..993eb5f2bb09 100644
--- a/sys/contrib/dev/acpica/osunixxf.c
+++ b/sys/contrib/dev/acpica/osunixxf.c
@@ -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;
}