aboutsummaryrefslogtreecommitdiff
path: root/debugger/dbcmds.c
diff options
context:
space:
mode:
Diffstat (limited to 'debugger/dbcmds.c')
-rw-r--r--debugger/dbcmds.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/debugger/dbcmds.c b/debugger/dbcmds.c
index f8c6496a7dfa..4024b3d260c8 100644
--- a/debugger/dbcmds.c
+++ b/debugger/dbcmds.c
@@ -477,7 +477,7 @@ AcpiDbCheckPredefinedNames (
(void) AcpiWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, ACPI_UINT32_MAX,
AcpiDbWalkForPredefinedNames, NULL, (void *) &Count, NULL);
- AcpiOsPrintf ("Found %d predefined names in the namespace\n", Count);
+ AcpiOsPrintf ("Found %u predefined names in the namespace\n", Count);
}
@@ -619,7 +619,7 @@ AcpiDbBatchExecute (
(void) AcpiWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, ACPI_UINT32_MAX,
AcpiDbWalkForExecute, NULL, (void *) &Info, NULL);
- AcpiOsPrintf ("Executed %d predefined names in the namespace\n", Info.Count);
+ AcpiOsPrintf ("Executed %u predefined names in the namespace\n", Info.Count);
}
@@ -678,7 +678,7 @@ AcpiDbDisplayTableInfo (
for (i = 0; i < AcpiGbl_RootTableList.CurrentTableCount; i++)
{
TableDesc = &AcpiGbl_RootTableList.Tables[i];
- AcpiOsPrintf ("%d ", i);
+ AcpiOsPrintf ("%u ", i);
/* Make sure that the table is mapped */
@@ -1178,7 +1178,7 @@ AcpiDbSetMethodData (
if (Index > ACPI_METHOD_MAX_ARG)
{
- AcpiOsPrintf ("Arg%d - Invalid argument name\n", Index);
+ AcpiOsPrintf ("Arg%u - Invalid argument name\n", Index);
goto Cleanup;
}
@@ -1191,7 +1191,7 @@ AcpiDbSetMethodData (
ObjDesc = WalkState->Arguments[Index].Object;
- AcpiOsPrintf ("Arg%d: ", Index);
+ AcpiOsPrintf ("Arg%u: ", Index);
AcpiDmDisplayInternalObject (ObjDesc, WalkState);
break;
@@ -1201,7 +1201,7 @@ AcpiDbSetMethodData (
if (Index > ACPI_METHOD_MAX_LOCAL)
{
- AcpiOsPrintf ("Local%d - Invalid local variable name\n", Index);
+ AcpiOsPrintf ("Local%u - Invalid local variable name\n", Index);
goto Cleanup;
}
@@ -1214,7 +1214,7 @@ AcpiDbSetMethodData (
ObjDesc = WalkState->LocalVariables[Index].Object;
- AcpiOsPrintf ("Local%d: ", Index);
+ AcpiOsPrintf ("Local%u: ", Index);
AcpiDmDisplayInternalObject (ObjDesc, WalkState);
break;
@@ -1938,7 +1938,7 @@ AcpiDbCheckIntegrity (
(void) AcpiWalkNamespace (ACPI_TYPE_ANY, ACPI_ROOT_OBJECT, ACPI_UINT32_MAX,
AcpiDbIntegrityWalk, NULL, (void *) &Info, NULL);
- AcpiOsPrintf ("Verified %d namespace nodes with %d Objects\n",
+ AcpiOsPrintf ("Verified %u namespace nodes with %u Objects\n",
Info.Nodes, Info.Objects);
}