diff options
author | jkim <jkim@FreeBSD.org> | 2013-06-26 19:01:10 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2013-06-26 19:01:10 +0000 |
commit | 7aca7201724cb02a2a0541bd3ad2c0aca23dd076 (patch) | |
tree | 274ff6113dbdc6cbbbf50dc30d0527fb9cb0fc55 /source/components/debugger/dbdisply.c | |
parent | af69f95bba3597db53a980597cfd371c9f6ee7cf (diff) | |
download | FreeBSD-src-7aca7201724cb02a2a0541bd3ad2c0aca23dd076.zip FreeBSD-src-7aca7201724cb02a2a0541bd3ad2c0aca23dd076.tar.gz |
Import ACPICA 20130626.
Diffstat (limited to 'source/components/debugger/dbdisply.c')
-rw-r--r-- | source/components/debugger/dbdisply.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source/components/debugger/dbdisply.c b/source/components/debugger/dbdisply.c index c453d57..046bbc3 100644 --- a/source/components/debugger/dbdisply.c +++ b/source/components/debugger/dbdisply.c @@ -139,9 +139,11 @@ AcpiDbGetPointer ( void *Target) { void *ObjPtr; + ACPI_SIZE Address; - ObjPtr = ACPI_TO_POINTER (ACPI_STRTOUL (Target, NULL, 16)); + Address = ACPI_STRTOUL (Target, NULL, 16); + ObjPtr = ACPI_TO_POINTER (Address); return (ObjPtr); } |