From 18d5a6d794338798545b83a28750ff0c5bb4f68b Mon Sep 17 00:00:00 2001 From: belliash Date: Fri, 19 Aug 2022 23:46:08 +0200 Subject: [PATCH] Insert new lines in every debug message --- xtldr/xtldr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xtldr/xtldr.c b/xtldr/xtldr.c index 255dc50..6750e34 100644 --- a/xtldr/xtldr.c +++ b/xtldr/xtldr.c @@ -49,7 +49,7 @@ BlStartXtLoader(IN EFI_HANDLE ImageHandle, if(Status != STATUS_EFI_SUCCESS) { /* Initialization failed, try printing error to stdout and serial console */ - BlEfiPrint(L"ERROR: Failed to initialize serial console"); + BlEfiPrint(L"ERROR: Failed to initialize serial console\n"); } /* Disable watchdog timer */ @@ -57,7 +57,7 @@ BlStartXtLoader(IN EFI_HANDLE ImageHandle, if(Status != STATUS_EFI_SUCCESS) { /* Failed to disable the timer, print message */ - BlDbgPrint(L"WARNING: Failed to disable watchdog timer"); + BlDbgPrint(L"WARNING: Failed to disable watchdog timer\n"); } /* Infinite bootloader loop */