mirror of
https://github.com/acpica/acpica/
synced 2025-02-23 17:04:21 +03:00
Debugger: Fix a format string for output of a 64-bit integer.
This commit is contained in:
parent
bfeb33c69e
commit
b705fedce1
@ -781,7 +781,7 @@ AcpiDbWalkForFields (
|
||||
{
|
||||
case ACPI_TYPE_INTEGER:
|
||||
|
||||
AcpiOsPrintf ("%lx", RetValue->Integer.Value);
|
||||
AcpiOsPrintf ("%8.8X%8.8X", ACPI_FORMAT_UINT64 (RetValue->Integer.Value));
|
||||
break;
|
||||
|
||||
case ACPI_TYPE_BUFFER:
|
||||
@ -794,10 +794,10 @@ AcpiDbWalkForFields (
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
AcpiOsPrintf ("\n");
|
||||
|
||||
ACPI_FREE (Buffer.Pointer);
|
||||
|
||||
return (AE_OK);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user