aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vnode_pager.c
diff options
context:
space:
mode:
authorRodney W. Grimes <rgrimes@FreeBSD.org>1995-05-30 08:16:23 +0000
committerRodney W. Grimes <rgrimes@FreeBSD.org>1995-05-30 08:16:23 +0000
commit9b2e535452929d6f2f798a2c01b23b1f547a0b0f (patch)
tree176f04f674860c7cfae9ac5d2ff4d4e1d73cb2b7 /sys/vm/vnode_pager.c
parent44204187ec133a0ab7bd77c8d974ad5afd4d88b4 (diff)
Remove trailing whitespace.
Notes
Notes: svn path=/head/; revision=8876
Diffstat (limited to 'sys/vm/vnode_pager.c')
-rw-r--r--sys/vm/vnode_pager.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/vm/vnode_pager.c b/sys/vm/vnode_pager.c
index 759abdeab5d9..6b93ec87ad88 100644
--- a/sys/vm/vnode_pager.c
+++ b/sys/vm/vnode_pager.c
@@ -37,7 +37,7 @@
* SUCH DAMAGE.
*
* from: @(#)vnode_pager.c 7.5 (Berkeley) 4/20/91
- * $Id: vnode_pager.c,v 1.38 1995/05/10 18:56:09 davidg Exp $
+ * $Id: vnode_pager.c,v 1.39 1995/05/18 02:59:26 davidg Exp $
*/
/*
@@ -314,11 +314,11 @@ vnode_pager_haspage(pager, offset)
/*
* Read the index to find the disk block to read from. If there is no
* block, report that we don't have this data.
- *
+ *
* Assumes that the vnode has whole page or nothing.
*/
err = VOP_BMAP(vp, block, (struct vnode **) 0, &bn, 0);
- if (err)
+ if (err)
return (TRUE);
return ((long) bn < 0 ? FALSE : TRUE);
}