Skip to content

Commit 937a442

Browse files
committed
x86-qemu-fsp: fix wrong multiboot2 header_length in testapp
1 parent f794309 commit 937a442

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test-app/app_x86_fsp_qemu.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ __attribute__((aligned(8))) struct multiboot_header mbh = {
5050
.hdr.magic = 0xe85250d6,
5151
.hdr.architecture = 0,
5252
.hdr.checksum = 0,
53-
.hdr.header_length = sizeof(struct mb2_header),
53+
.hdr.header_length = sizeof(struct multiboot_header),
5454
.req.type = 1,
5555
.req.flags = 0,
5656
.req.size = sizeof(struct mb2_tag_info_req),

0 commit comments

Comments
 (0)