mirror of
https://github.com/reactos/reactos.git
synced 2024-12-28 18:15:11 +00:00
[NTOS:KDBG] Adapt the formatting of the debug filter table display output to suit longer component names.
This commit is contained in:
parent
7d3dac324e
commit
46416a6238
1 changed files with 3 additions and 3 deletions
|
@ -706,11 +706,11 @@ KdbpCmdFilter(
|
|||
"- The 'DEFAULT' debug filter component is used for DbgPrint() messages with\n"
|
||||
" an unknown Component ID.\n\n");
|
||||
KdbpPrint("The list of debug filter components currently available on your system is:\n\n");
|
||||
KdbpPrint(" Component Name Component ID\n"
|
||||
"================ ==============\n");
|
||||
KdbpPrint(" Component Name Component ID\n"
|
||||
" ================== ================\n");
|
||||
for (i = 0; i < RTL_NUMBER_OF(ComponentTable); i++)
|
||||
{
|
||||
KdbpPrint("%16s 0x%08lx\n", ComponentTable[i].Name, ComponentTable[i].Id);
|
||||
KdbpPrint("%20s 0x%08lx\n", ComponentTable[i].Name, ComponentTable[i].Id);
|
||||
}
|
||||
return TRUE;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue