summaryrefslogtreecommitdiff
path: root/kernel/syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/syscalls.c')
-rw-r--r--kernel/syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/syscalls.c b/kernel/syscalls.c
index 0653c93..92a0a23 100644
--- a/kernel/syscalls.c
+++ b/kernel/syscalls.c
@@ -354,7 +354,7 @@ SYSIMPL(exec)
pcb->pdir = NULL;
// "load" it and set up the VM tables for this process
- int status = user_load(prog, pcb, args);
+ int status = user_load(prog, pcb, args, false);
if (status != SUCCESS) {
RET(pcb) = status;
SYSCALL_EXIT(status);