diff options
author | Marvin Borner | 2020-08-23 12:19:20 +0200 |
---|---|---|
committer | Marvin Borner | 2020-08-23 12:19:20 +0200 |
commit | b1faf9042c5104d7dafc7d880817def934086ddb (patch) | |
tree | 4abe87a6d83aaad17eebd291f2fe046e6a1324a6 /kernel/features/syscall.c | |
parent | b667ea0fbd26af222f828199e7b9a7e62ad98081 (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.c | 2 |
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: { |