summaryrefslogtreecommitdiff
path: root/source/components/debugger/dbobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/components/debugger/dbobject.c')
-rw-r--r--source/components/debugger/dbobject.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/components/debugger/dbobject.c b/source/components/debugger/dbobject.c
index 58022b8fd53f4..b424882f625b2 100644
--- a/source/components/debugger/dbobject.c
+++ b/source/components/debugger/dbobject.c
@@ -161,10 +161,10 @@ AcpiDbDecodeInternalObject (
case ACPI_TYPE_STRING:
- AcpiOsPrintf ("(%u) \"%.24s",
+ AcpiOsPrintf ("(%u) \"%.60s",
ObjDesc->String.Length, ObjDesc->String.Pointer);
- if (ObjDesc->String.Length > 24)
+ if (ObjDesc->String.Length > 60)
{
AcpiOsPrintf ("...");
}