Remove unused variable in unionfs_root().

Submitted by:	daichi, Masanori OZAWA
This commit is contained in:
Craig Rodrigues 2006-12-09 17:24:18 +00:00
parent 1e370dbbdc
commit b05872f29b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=165037

View file

@ -398,12 +398,10 @@ static int
unionfs_root(struct mount *mp, int flags, struct vnode **vpp, struct thread *td)
{
struct unionfs_mount *ump;
struct unionfs_node *unp;
struct vnode *vp;
ump = MOUNTTOUNIONFSMOUNT(mp);
vp = ump->um_rootvp;
unp = VTOUNIONFS(vp);
UNIONFSDEBUG("unionfs_root: rootvp=%p locked=%x\n",
vp, VOP_ISLOCKED(vp, td));