Don't compile a dead variable declaration.

This commit is contained in:
Garrett Wollman 2001-01-09 04:24:43 +00:00
parent c9fce3556d
commit b7ef0b1281
2 changed files with 4 additions and 0 deletions

View File

@ -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"));

View File

@ -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"));