Remove another ';' after if().

Also spotted by:	bz
This commit is contained in:
Poul-Henning Kamp 2005-03-27 07:53:13 +00:00
parent 2d8dfb2836
commit 3b73a3c079
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=144173

View file

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