Remove extra ; at end of if().

Found by:	bz
This commit is contained in:
Poul-Henning Kamp 2005-03-27 07:52:12 +00:00
parent 43ce1c7762
commit 2d8dfb2836

View File

@ -2372,7 +2372,7 @@ vn_printf(struct vnode *vp, const char *fmt, ...)
printf(" flags (%s)\n", buf + 1);
if (mtx_owned(VI_MTX(vp)))
printf(" VI_LOCKed");
if (vp->v_object != NULL);
if (vp->v_object != NULL)
printf(" v_object %p ref %d pages %d\n",
vp->v_object, vp->v_object->ref_count,
vp->v_object->resident_page_count);