diff options
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index b0b37ac..2796372 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -72,7 +72,7 @@ static void syscall_handler(struct regs *r) case SYS_EXEC: { char *path = (char *)r->ebx; struct proc *proc = proc_make(PROC_PRIV_NONE); - r->eax = (u32)bin_load(path, proc); + r->eax = (u32)elf_load(path, proc); if (r->eax != 0) proc_exit(proc, -r->eax); // TODO: Reimplement argc,argv |