mirror of
https://github.com/acpica/acpica/
synced 2025-02-07 17:14:13 +03:00
Debugger: Cleanup output of returned buffer objects.
This change aligns the data dump for buffer objects.
This commit is contained in:
parent
93324dd734
commit
8b73fb9ff4
@ -275,6 +275,10 @@ AcpiDbDumpExternalObject (
|
||||
AcpiOsPrintf ("[Buffer] Length %.2X = ", ObjDesc->Buffer.Length);
|
||||
if (ObjDesc->Buffer.Length)
|
||||
{
|
||||
if (ObjDesc->Buffer.Length > 16)
|
||||
{
|
||||
AcpiOsPrintf ("\n");
|
||||
}
|
||||
AcpiUtDumpBuffer (ACPI_CAST_PTR (UINT8, ObjDesc->Buffer.Pointer),
|
||||
ObjDesc->Buffer.Length, DB_DWORD_DISPLAY, _COMPONENT);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user