From fc633ddaa3b4d7d159cb43c3dfb9afe1a3fa96c3 Mon Sep 17 00:00:00 2001 From: israpps <57065102+israpps@users.noreply.github.com> Date: Wed, 28 Feb 2024 11:42:20 -0300 Subject: [PATCH] Update elf.c --- src/elf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/elf.c b/src/elf.c index edf08d0a..fca670f5 100644 --- a/src/elf.c +++ b/src/elf.c @@ -55,6 +55,7 @@ typedef struct int checkELFheader(char *path, int type) { u16 MAGICS[2] = {ELF_HEADER_ID_EE, ELF_HEADER_ID_IRX}; + DPRINTF("Checking for header type %d\n", type); elf_header_t elf_head; u8 *boot_elf = (u8 *)&elf_head; elf_header_t *eh = (elf_header_t *)boot_elf;