Remove needless white-space change that crept in through wapbl branch

merge.
This commit is contained in:
simonb 2008-07-31 08:42:01 +00:00
parent bc6528ab7a
commit 2a3d67b697

View File

@ -1,4 +1,4 @@
/* $NetBSD: vnode_if.c,v 1.77 2008/07/31 05:38:05 simonb Exp $ */
/* $NetBSD: vnode_if.c,v 1.78 2008/07/31 08:42:01 simonb Exp $ */
/*
* Warning: DO NOT EDIT! This file is automatically generated!
@ -40,7 +40,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.77 2008/07/31 05:38:05 simonb Exp $");
__KERNEL_RCSID(0, "$NetBSD: vnode_if.c,v 1.78 2008/07/31 08:42:01 simonb Exp $");
#include "opt_vnode_lockdebug.h"
@ -802,7 +802,6 @@ VOP_FSYNC(struct vnode *vp,
mpsafe = (vp->v_vflag & VV_MPSAFE);
if (!mpsafe) { KERNEL_LOCK(1, curlwp); }
error = (VCALL(vp, VOFFSET(vop_fsync), &a));
if (!mpsafe) { KERNEL_UNLOCK_ONE(curlwp); }
return error;
}