https://git.reactos.org/?p=reactos.git;a=commitdiff;h=46416a62380d74ce820eb6...
commit 46416a62380d74ce820eb6d2aacfac6e4e7ed27c Author: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org AuthorDate: Sat Jul 18 18:16:21 2020 +0200 Commit: Hermès Bélusca-Maïto hermes.belusca-maito@reactos.org CommitDate: Sat Jul 18 18:16:21 2020 +0200
[NTOS:KDBG] Adapt the formatting of the debug filter table display output to suit longer component names. --- ntoskrnl/kdbg/kdb_cli.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/ntoskrnl/kdbg/kdb_cli.c b/ntoskrnl/kdbg/kdb_cli.c index 03fd82447c4..53d874c3e2f 100644 --- a/ntoskrnl/kdbg/kdb_cli.c +++ b/ntoskrnl/kdbg/kdb_cli.c @@ -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; }