diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-23 19:11:03 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-08-23 19:11:03 +0000 |
commit | 531784b7e722c2bdb60cd48c504e23dd44d6dda7 (patch) | |
tree | e710090c14ef3cf8efd38ccfb1a084b536b4ad5a /sys/adosfs/adlookup.c | |
parent | 73163f8a1781a5150a47b009e2676f4d9317f5eb (diff) |
Some style and signedness pedantery
Diffstat (limited to 'sys/adosfs/adlookup.c')
-rw-r--r-- | sys/adosfs/adlookup.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/adosfs/adlookup.c b/sys/adosfs/adlookup.c index 6ff6d17437b..a12f9238a51 100644 --- a/sys/adosfs/adlookup.c +++ b/sys/adosfs/adlookup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: adlookup.c,v 1.5 1996/06/10 07:25:18 deraadt Exp $ */ +/* $OpenBSD: adlookup.c,v 1.6 1996/08/23 19:10:57 niklas Exp $ */ /* $NetBSD: adlookup.c,v 1.13.4.1 1996/05/27 09:53:50 is Exp $ */ /* @@ -68,14 +68,14 @@ adosfs_lookup(v) struct vnode **a_vpp; struct componentname *a_cnp; } */ *sp = v; - int nameiop, last, lockp, wantp, flags, error, vpid, nocache, i; + int nameiop, last, lockp, wantp, flags, error, nocache, i; struct componentname *cnp; struct vnode **vpp; /* place to store result */ struct anode *ap; /* anode to find */ struct vnode *vdp; /* vnode of search dir */ struct anode *adp; /* anode of search dir */ struct ucred *ucp; /* lookup credentials */ - u_long bn, plen, hval; + u_long bn, plen, hval, vpid; u_char *pelt; #ifdef ADOSFS_DIAGNOSTIC |