Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 1 Sep 2015 22:28:24 +0000 (UTC)
From:      John Baldwin <jhb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r287387 - head/sys/kern
Message-ID:  <201509012228.t81MSONF039814@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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;



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201509012228.t81MSONF039814>