svn commit: r287387 - head/sys/kern

John Baldwin jhb at FreeBSD.org
Tue Sep 1 22:28:24 UTC 2015


Author: jhb
Date: Tue Sep  1 22:28:23 2015
New Revision: 287387
URL: https://svnweb.freebsd.org/changeset/base/287387

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

Modified:
  head/sys/kern/subr_syscall.c

Modified: head/sys/kern/subr_syscall.c
==============================================================================
--- head/sys/kern/subr_syscall.c	Tue Sep  1 22:24:54 2015	(r287386)
+++ head/sys/kern/subr_syscall.c	Tue Sep  1 22:28:23 2015	(r287387)
@@ -170,7 +170,7 @@ syscallenter(struct thread *td, struct s
 }
 
 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;


More information about the svn-src-head mailing list