summaryrefslogtreecommitdiff
path: root/kernel/syscalls.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/syscalls.c')
-rw-r--r--kernel/syscalls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/syscalls.c b/kernel/syscalls.c
index 2952c11..d289121 100644
--- a/kernel/syscalls.c
+++ b/kernel/syscalls.c
@@ -461,5 +461,5 @@ uint32_t syscall_generic(uint32_t nr,uint32_t p1, uint32_t p2, uint32_t p3, uint
case SYSCALL_DUP2 :
return syscall_dup2(p1,p2,p3,pid);
}
- kpanic("unknown syscall");
+ kpanic("unknown syscall %d",nr);
}