diff options
Diffstat (limited to 'kernel/syscalls.c')
-rw-r--r-- | kernel/syscalls.c | 2 |
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); |