aboutsummaryrefslogtreecommitdiff
path: root/kernel/features/syscall.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/features/syscall.c')
-rw-r--r--kernel/features/syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c
index 2a310ef..4197985 100644
--- a/kernel/features/syscall.c
+++ b/kernel/features/syscall.c
@@ -28,7 +28,7 @@ void syscall_handler(struct regs *r)
}
case SYS_MALLOC: {
printf("malloc\n");
- r->eax = (u32)malloc(r->eax);
+ r->eax = (u32)malloc(r->ebx);
break;
}
case SYS_FREE: {