diff options
author | marks <marks@FreeBSD.org> | 2004-12-02 00:12:19 +0000 |
---|---|---|
committer | marks <marks@FreeBSD.org> | 2004-12-02 00:12:19 +0000 |
commit | fd493b6d5cf85d29aeb338adb281ee6db8597472 (patch) | |
tree | 33ecb3f2e656bb134bc744bad0afd1678d1b681c /sys/contrib | |
parent | 128b57630de396f8c0ecb54313434d7c8beaa4cd (diff) | |
download | FreeBSD-src-fd493b6d5cf85d29aeb338adb281ee6db8597472.zip FreeBSD-src-fd493b6d5cf85d29aeb338adb281ee6db8597472.tar.gz |
Oops, remove unnecessary cast in original, out-commented code.
This was a debug leftover.
MFC after: 1 week
Diffstat (limited to 'sys/contrib')
-rw-r--r-- | sys/contrib/dev/acpica/osunixxf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/contrib/dev/acpica/osunixxf.c b/sys/contrib/dev/acpica/osunixxf.c index 5c2b89a..d83ed4a 100644 --- a/sys/contrib/dev/acpica/osunixxf.c +++ b/sys/contrib/dev/acpica/osunixxf.c @@ -189,7 +189,7 @@ AcpiOsGetRootPointer ( /* The supporting code for this is not yet available. * Return to the old situation for now. */ - return (AeLocalGetRootPointer(Flags, (ACPI_PHYSICAL_ADDRESS *)Address)); + return (AeLocalGetRootPointer(Flags, Address)); #else return (AE_OK); #endif |