From 26b99f3bb3f1fc34962e203ba431447dcd2ad946 Mon Sep 17 00:00:00 2001 From: Ard Biesheuvel Date: Sat, 9 Dec 2017 09:55:13 +0000 Subject: [PATCH] ArmPkg/PlatformBootManagerLib: add missing newline Add a missing newline to the version string output that is displayed on the serial console, or the next line will be appended to it. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel Reviewed-by: Leif Lindholm --- ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c b/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c index ccdb3e0a5d..61ab61ccc7 100644 --- a/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c +++ b/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c @@ -549,7 +549,7 @@ PlatformBootManagerAfterConsole ( Status = BootLogoEnableLogo (); if (EFI_ERROR (Status)) { if (FirmwareVerLength > 0) { - Print (VERSION_STRING_PREFIX L"%s", + Print (VERSION_STRING_PREFIX L"%s\n", PcdGetPtr (PcdFirmwareVersionString)); } Print (L"Press ESCAPE for boot options ");