aboutsummaryrefslogtreecommitdiff
path: root/kernel/features/syscall.c
diff options
context:
space:
mode:
authorMarvin Borner2020-08-23 12:19:20 +0200
committerMarvin Borner2020-08-23 12:19:20 +0200
commitb1faf9042c5104d7dafc7d880817def934086ddb (patch)
tree4abe87a6d83aaad17eebd291f2fe046e6a1324a6 /kernel/features/syscall.c
parentb667ea0fbd26af222f828199e7b9a7e62ad98081 (diff)
How did this work before?!
I used r->eax instead of r->ebx in malloc :O
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: {