diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-11-07 08:53:44 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1997-11-07 08:53:44 +0000 |
commit | 4a11ca4e29ff701a15b6c4de4e99483f97182ea6 (patch) | |
tree | d25f628a9aba608f64fe75989d2287c6480e8b0b /sys/kern/uipc_usrreq.c | |
parent | fbff0da4c8b49e614414ea85874ca2eace160515 (diff) |
Remove a bunch of variables which were unused both in GENERIC and LINT.
Found by: -Wunused
Notes
Notes:
svn path=/head/; revision=31016
Diffstat (limited to 'sys/kern/uipc_usrreq.c')
-rw-r--r-- | sys/kern/uipc_usrreq.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/kern/uipc_usrreq.c b/sys/kern/uipc_usrreq.c index bbf41bfedcc3..dafb5d94f481 100644 --- a/sys/kern/uipc_usrreq.c +++ b/sys/kern/uipc_usrreq.c @@ -31,7 +31,7 @@ * SUCH DAMAGE. * * From: @(#)uipc_usrreq.c 8.3 (Berkeley) 1/4/94 - * $Id: uipc_usrreq.c,v 1.27 1997/09/14 02:52:18 peter Exp $ + * $Id: uipc_usrreq.c,v 1.28 1997/10/12 20:24:18 phk Exp $ */ #include <sys/param.h> @@ -450,7 +450,6 @@ static int unp_attach(so) struct socket *so; { - register struct mbuf *m; register struct unpcb *unp; int error; |