diff options
Diffstat (limited to 'src/user/bootstrap')
-rw-r--r-- | src/user/bootstrap/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/bootstrap/main.c b/src/user/bootstrap/main.c index 9c08023..e877b64 100644 --- a/src/user/bootstrap/main.c +++ b/src/user/bootstrap/main.c @@ -27,7 +27,7 @@ void _start(void) { void *init = tar_find("bin/init", 8, &_initrd, ~0) + 512; if (init) { _klogf("execing init.elf"); - elf_exec(init); + elf_exec(init, NULL, NULL); _klogf("elf_exec failed"); } else { _klogf("couldn't find init.elf"); |