From 0e4166b711eedb35a2975aaf5e3e3f6949966c66 Mon Sep 17 00:00:00 2001 From: jhb Date: Tue, 1 Sep 2015 22:28:23 +0000 Subject: The 'sa' argument to syscallret() is not unused. --- sys/kern/subr_syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/subr_syscall.c b/sys/kern/subr_syscall.c index 292b942..6d12b61 100644 --- a/sys/kern/subr_syscall.c +++ b/sys/kern/subr_syscall.c @@ -170,7 +170,7 @@ syscallenter(struct thread *td, struct syscall_args *sa) } static inline void -syscallret(struct thread *td, int error, struct syscall_args *sa __unused) +syscallret(struct thread *td, int error, struct syscall_args *sa) { struct proc *p, *p2; int traced; -- cgit v1.1