From dbeaef63c1b8253fd4edefe643d1f6a96bd69174 Mon Sep 17 00:00:00 2001 From: Stanislav Motylkov Date: Mon, 24 Feb 2020 01:02:40 +0300 Subject: [PATCH] [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"); } } }