diff options
author | wollman <wollman@FreeBSD.org> | 2001-01-09 04:24:43 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2001-01-09 04:24:43 +0000 |
commit | 8a0e4fd3b60b69083cf4958dd48909e532b529bf (patch) | |
tree | f9671c59ae0d6cd44bcebc3a8664257694cd9949 /sys/fs | |
parent | 84da8d820c0ca28d5b12acde5b29d4a1ad9e1587 (diff) | |
download | FreeBSD-src-8a0e4fd3b60b69083cf4958dd48909e532b529bf.zip FreeBSD-src-8a0e4fd3b60b69083cf4958dd48909e532b529bf.tar.gz |
Don't compile a dead variable declaration.
Diffstat (limited to 'sys/fs')
-rw-r--r-- | sys/fs/unionfs/union_vnops.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/fs/unionfs/union_vnops.c b/sys/fs/unionfs/union_vnops.c index 05db0d5..e8e0b8b 100644 --- a/sys/fs/unionfs/union_vnops.c +++ b/sys/fs/unionfs/union_vnops.c @@ -1797,7 +1797,9 @@ union_unlock(ap) struct proc *a_p; } */ *ap; { +#if 0 struct union_node *un = VTOUNION(ap->a_vp); +#endif int error; KASSERT((un->un_uppervp == NULL || un->un_uppervp->v_usecount > 0), ("uppervp usecount is 0")); |