64-bit integer display (always)

date	2001.10.04.20.39.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:27:39 +00:00
parent 4d3a594ee8
commit f4b894964b

View File

@ -1,7 +1,7 @@
/*******************************************************************************
*
* Module Name: dbutils - AML debugger utilities
* $Revision: 1.44 $
* $Revision: 1.45 $
*
******************************************************************************/
@ -232,7 +232,7 @@ AcpiDbDumpObject (
case ACPI_TYPE_INTEGER:
AcpiOsPrintf ("[Integer] = %X%8.8X\n", HIDWORD (ObjDesc->Integer.Value),
AcpiOsPrintf ("[Integer] = %8.8X%8.8X\n", HIDWORD (ObjDesc->Integer.Value),
LODWORD (ObjDesc->Integer.Value));
break;