Skip to content

Commit dbeaef6

Browse files
authored
[HAL] Fix debug prints in ShowSize() and its caller (reactos#2377)
1 parent 60e8935 commit dbeaef6

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hal/halx86/legacy/bussupp.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ ShowSize(ULONG x)
792792
{
793793
DbgPrint("%d", x);
794794
}
795-
DbgPrint("]\n");
795+
DbgPrint("]");
796796
}
797797

798798
/*
@@ -980,6 +980,7 @@ HalpDebugPciDumpBus(IN ULONG i,
980980
(Mem & PCI_ADDRESS_MEMORY_PREFETCHABLE) ? "" : "non-");
981981
ShowSize(Size);
982982
}
983+
DbgPrint("\n");
983984
}
984985
}
985986
}

0 commit comments

Comments
 (0)