From: Ard Biesheuvel Date: Sat, 9 Dec 2017 09:55:13 +0000 (+0000) Subject: ArmPkg/PlatformBootManagerLib: add missing newline X-Git-Tag: edk2-stable201903~2864 X-Git-Url: https://git.proxmox.com/?p=mirror_edk2.git;a=commitdiff_plain;h=26b99f3bb3f1fc34962e203ba431447dcd2ad946 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 --- 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 ");