Whitespace fixes.

This commit is contained in:
John Baldwin 2001-08-04 20:49:29 +00:00
parent f5b0911ca7
commit bd8e0d5871
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=81140
2 changed files with 2 additions and 2 deletions

View File

@ -275,7 +275,7 @@ void
vm_pager_strategy(vm_object_t object, struct bio *bp)
{
if (pagertab[object->type]->pgo_strategy) {
(*pagertab[object->type]->pgo_strategy)(object, bp);
(*pagertab[object->type]->pgo_strategy)(object, bp);
} else {
bp->bio_flags |= BIO_ERROR;
bp->bio_error = ENXIO;

View File

@ -213,7 +213,7 @@ vnode_pager_haspage(object, pindex, before, after)
* not have the page.
*/
if ((vp->v_mount == NULL) ||
(IDX_TO_OFF(pindex) >= object->un_pager.vnp.vnp_size))
(IDX_TO_OFF(pindex) >= object->un_pager.vnp.vnp_size))
return FALSE;
bsize = vp->v_mount->mnt_stat.f_iosize;