diff options
author | 2003-04-01 12:18:43 +0000 | |
---|---|---|
committer | 2003-04-01 12:18:43 +0000 | |
commit | 50bf0206e06fe7eb36c51e87ec036cb881a96e9c (patch) | |
tree | 8cc1e12201ca6941b3247da7b68ce1dc164565f5 | |
parent | Digital Unix -> Digital UNIX (diff) | |
download | wireguard-openbsd-50bf0206e06fe7eb36c51e87ec036cb881a96e9c.tar.xz wireguard-openbsd-50bf0206e06fe7eb36c51e87ec036cb881a96e9c.zip |
Unused variable.
Pointed out by John L. Scarfone <j0@cox.net>
-rw-r--r-- | sys/adosfs/adlookup.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/adosfs/adlookup.c b/sys/adosfs/adlookup.c index 383a0dd3731..7ffc7f392f6 100644 --- a/sys/adosfs/adlookup.c +++ b/sys/adosfs/adlookup.c @@ -1,4 +1,4 @@ -/* $OpenBSD: adlookup.c,v 1.13 2003/03/16 00:30:38 margarida Exp $ */ +/* $OpenBSD: adlookup.c,v 1.14 2003/04/01 12:18:43 art Exp $ */ /* $NetBSD: adlookup.c,v 1.17 1996/10/25 23:13:58 cgd Exp $ */ /* @@ -76,7 +76,7 @@ adosfs_lookup(v) struct anode *adp; /* anode of search dir */ struct ucred *ucp; /* lookup credentials */ struct proc *p; - u_int32_t plen, hval, vpid; + u_int32_t plen, hval; daddr_t bn; char *pelt; |