https://git.reactos.org/?p=reactos.git;a=commitdiff;h=dbeaef63c1b8253fd4edef...
commit dbeaef63c1b8253fd4edefe643d1f6a96bd69174 Author: Stanislav Motylkov x86corez@gmail.com AuthorDate: Mon Feb 24 01:02:40 2020 +0300 Commit: GitHub noreply@github.com CommitDate: Sun Feb 23 23:02:40 2020 +0100
[HAL] Fix debug prints in ShowSize() and its caller (#2377) --- hal/halx86/legacy/bussupp.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/hal/halx86/legacy/bussupp.c b/hal/halx86/legacy/bussupp.c index ba44b4cec91..87fe6cbab72 100644 --- a/hal/halx86/legacy/bussupp.c +++ b/hal/halx86/legacy/bussupp.c @@ -792,7 +792,7 @@ ShowSize(ULONG x) { DbgPrint("%d", x); } - DbgPrint("]\n"); + DbgPrint("]"); }
/* @@ -980,6 +980,7 @@ HalpDebugPciDumpBus(IN ULONG i, (Mem & PCI_ADDRESS_MEMORY_PREFETCHABLE) ? "" : "non-"); ShowSize(Size); } + DbgPrint("\n"); } } }