summaryrefslogtreecommitdiff
path: root/ArmPkg
diff options
context:
space:
mode:
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2017-12-09 09:55:13 +0000
committerArd Biesheuvel <ard.biesheuvel@linaro.org>2017-12-11 18:05:41 +0000
commit26b99f3bb3f1fc34962e203ba431447dcd2ad946 (patch)
tree0c5e898bfb51388d2fc2583674cd1e58a9a916de /ArmPkg
parent3b3c009a25543bf709267982b2583dd486d4d24d (diff)
downloadedk2-26b99f3bb3f1fc34962e203ba431447dcd2ad946.zip
edk2-26b99f3bb3f1fc34962e203ba431447dcd2ad946.tar.gz
edk2-26b99f3bb3f1fc34962e203ba431447dcd2ad946.tar.bz2
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 <ard.biesheuvel@linaro.org> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
Diffstat (limited to 'ArmPkg')
-rw-r--r--ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c b/ArmPkg/Library/PlatformBootManagerLib/PlatformBm.c
index ccdb3e0..61ab61c 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 ");