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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/features/syscall.c b/kernel/features/syscall.c
index 2f2cbbb..2a01d8a 100644
--- a/kernel/features/syscall.c
+++ b/kernel/features/syscall.c
@@ -14,6 +14,7 @@
void syscall_handler(struct regs *r)
{
enum sys num = r->eax;
+ r->eax = 0;
printf("[SYSCALL] %d\n", num);
switch (num) {