x86_fsp: fix: printf wrong parameter

pull/443/head
Marco Oliverio 2024-01-29 18:39:24 +01:00
parent 311ed5fa22
commit 160e402fad
1 changed files with 1 additions and 1 deletions

View File

@ -120,7 +120,7 @@ void do_boot(const uint32_t *app)
mptable_setup();
x86_paging_dump_info();
r = elf_load_image_mmu((uint8_t *)app, &e, mmu_cb);
wolfBoot_printf("Elf loaded (ret %d), entry 0x%x_%x\r\n", 0,
wolfBoot_printf("Elf loaded (ret %d), entry 0x%x_%x\r\n", r,
(uint32_t)(e >> 32),
(uint32_t)(e));
x86_paging_dump_info();