diff options
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r-- | kernel/features/syscall.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c index e2df79a..a6bfb2a 100644 --- a/kernel/features/syscall.c +++ b/kernel/features/syscall.c @@ -88,8 +88,7 @@ void syscall_handler(struct regs *r) break; } case SYS_RECEIVE: { - struct proc_message *msg = proc_receive(proc_current()); - r->eax = (u32)(msg ? msg->msg : NULL); + r->eax = proc_receive(proc_current(), (void *)r->ebx); break; } case SYS_GETPID: { |