summaryrefslogtreecommitdiff
path: root/src/init/shell.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/init/shell.c')
-rw-r--r--src/init/shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/init/shell.c b/src/init/shell.c
index e7c836f..105231e 100644
--- a/src/init/shell.c
+++ b/src/init/shell.c
@@ -145,7 +145,7 @@ void shell_loop(void) {
} else if (!strcmp(cmd, "exit")) {
_syscall_exit(0);
} else if (!strcmp(cmd, "fork")) {
- if (_syscall_fork(0))
+ if (_syscall_fork(0, NULL))
_syscall_await();
else level++;
} else if (!strcmp(cmd, "run_tests")) {