aboutsummaryrefslogtreecommitdiff
path: root/stand
diff options
context:
space:
mode:
authorRoger Pau Monné <royger@FreeBSD.org>2021-02-23 14:51:58 +0000
committerRoger Pau Monné <royger@FreeBSD.org>2021-02-23 15:04:58 +0000
commitab379c15af6fd7c2b94f0e91769fe7e1a4102e25 (patch)
treeb210b2cc9b4f61100e3cddd1f93eebc08cdbe2dd /stand
parent26492ba2716f8b839f743bb663ce47405990fdf0 (diff)
downloadsrc-ab379c15af6fd7c2b94f0e91769fe7e1a4102e25.tar.gz
src-ab379c15af6fd7c2b94f0e91769fe7e1a4102e25.zip
stand/multiboot2: fix error message format
Add a missing space in one error message. Sponsored by: Citrix Systems R&D MFC after: 3 days Fixes: adda2797eb2a ('stand/multiboot2: add support for booting a Xen dom0 in UEFI mode')
Diffstat (limited to 'stand')
-rw-r--r--stand/efi/loader/arch/amd64/multiboot2.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/stand/efi/loader/arch/amd64/multiboot2.c b/stand/efi/loader/arch/amd64/multiboot2.c
index e4589bc8b0bb..6ee36afcb881 100644
--- a/stand/efi/loader/arch/amd64/multiboot2.c
+++ b/stand/efi/loader/arch/amd64/multiboot2.c
@@ -115,8 +115,8 @@ loadfile(char *filename, uint64_t dest, struct preloaded_file **result)
/* Valid multiboot header has been found, validate checksum */
if (header->magic + header->architecture + header->header_length +
header->checksum != 0) {
- printf("Multiboot checksum failed, magic: %#x architecture: %#x"
- "header_length %#x checksum: %#x\n",
+ printf("Multiboot checksum failed, magic: %#x "
+ "architecture: %#x header_length %#x checksum: %#x\n",
header->magic, header->architecture, header->header_length,
header->checksum);
error = EFTYPE;