From f093fcf90f420b18429dcbc6c91f9393171634ce Mon Sep 17 00:00:00 2001 From: Daniel Kiper Date: Mon, 11 Aug 2014 15:13:04 +0200 Subject: [PATCH] x86/EFI: Add newline to the end of graphics mode error message Error message related to graphics mode does not have new line. So, let's fix it. Signed-off-by: Daniel Kiper --- xen/arch/x86/efi/boot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/arch/x86/efi/boot.c b/xen/arch/x86/efi/boot.c index 2b515f2953..3bdc15820a 100644 --- a/xen/arch/x86/efi/boot.c +++ b/xen/arch/x86/efi/boot.c @@ -1360,7 +1360,7 @@ efi_start(EFI_HANDLE ImageHandle, EFI_SYSTEM_TABLE *SystemTable) break; /* fall through */ default: - PrintErr(L"Current graphics mode is unsupported!"); + PrintErr(L"Current graphics mode is unsupported!\r\n"); status = EFI_UNSUPPORTED; break; } -- 2.30.2