diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-07-02 06:52:07 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-07-02 06:52:07 +0000 |
commit | 56c563e32af388c2363991a1f6562f4388760a9e (patch) | |
tree | 12b25e46c697f6b644acb92b10e8a28b4c4468db /sys/miscfs | |
parent | 18834530fbaf59f00788eb643ee96e332b195804 (diff) |
-Wall & -Wstrict-prototype fixes
Diffstat (limited to 'sys/miscfs')
-rw-r--r-- | sys/miscfs/procfs/procfs_subr.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/miscfs/procfs/procfs_subr.c b/sys/miscfs/procfs/procfs_subr.c index 26484b7584c..1aae32931e2 100644 --- a/sys/miscfs/procfs/procfs_subr.c +++ b/sys/miscfs/procfs/procfs_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: procfs_subr.c,v 1.3 1996/06/21 12:49:56 mickey Exp $ */ +/* $OpenBSD: procfs_subr.c,v 1.4 1996/07/02 06:52:03 niklas Exp $ */ /* $NetBSD: procfs_subr.c,v 1.15 1996/02/12 15:01:42 christos Exp $ */ /* @@ -93,7 +93,6 @@ procfs_allocvp(mp, vpp, pid, pfs_type) { struct pfsnode *pfs; struct vnode *vp; - struct pfsnode **pp; int error; loop: @@ -200,7 +199,6 @@ int procfs_freevp(vp) struct vnode *vp; { - struct pfsnode **pfspp; struct pfsnode *pfs = VTOPFS(vp); TAILQ_REMOVE(&pfshead, pfs, list); |