aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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;