From 3b73a3c079f330095b2d27928b1b4dce1fc8cc4f Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Sun, 27 Mar 2005 07:53:13 +0000 Subject: [PATCH] Remove another ';' after if(). Also spotted by: bz --- sys/kern/vfs_subr.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index e9f9989110c..1c6da3f3531 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -2234,7 +2234,7 @@ vgonel(struct vnode *vp, struct thread *td) * Clean out any buffers associated with the vnode. * If the flush fails, just toss the buffers. */ - if (!TAILQ_EMPTY(&vp->v_bufobj.bo_dirty.bv_hd)); + if (!TAILQ_EMPTY(&vp->v_bufobj.bo_dirty.bv_hd)) (void) vn_write_suspend_wait(vp, NULL, V_WAIT); if (vinvalbuf(vp, V_SAVE, td, 0, 0) != 0) vinvalbuf(vp, 0, td, 0, 0);