Insert new lines in every debug message
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Rafal Kupiec 2022-08-19 23:46:08 +02:00
parent 8a23f6ba0e
commit 18d5a6d794
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -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 */