The 'sa' argument to syscallret() is not unused.

This commit is contained in:
John Baldwin 2015-09-01 22:28:23 +00:00
parent 183b68f74f
commit ded3e7f08e
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=287387

View File

@ -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;