summaryrefslogtreecommitdiff
path: root/debugger/dbutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'debugger/dbutils.c')
-rw-r--r--debugger/dbutils.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/debugger/dbutils.c b/debugger/dbutils.c
index b49726369b8b..15799eb7b4c9 100644
--- a/debugger/dbutils.c
+++ b/debugger/dbutils.c
@@ -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);
}