diff options
Diffstat (limited to 'bootmain.c')
-rw-r--r-- | bootmain.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -43,7 +43,7 @@ bootmain(void) // Call the entry point from the ELF header. // Does not return! - entry = (void(*)(void))(elf->entry - KERNBASE); + entry = (void(*)(void))(elf->entry); entry(); } |