ext2fs: small formatting fixes.

Remove some redundant spaces.
No functional change.

MFC after:	3 days
This commit is contained in:
pfg 2014-03-01 21:22:20 +00:00
parent e6899fc0bf
commit 5b13eca664
2 changed files with 3 additions and 3 deletions

View File

@ -934,7 +934,7 @@ ext2_nodealloccg(struct inode *ip, int cg, daddr_t ipref, int mode)
panic("ext2fs_nodealloccg: map corrupted");
/* NOTREACHED */
}
}
}
ipref = (loc - ibp) * NBBY + ffs(~*loc) - 1;
gotit:
setbit(ibp, ipref);

View File

@ -250,10 +250,10 @@ ext2_bmaparray(struct vnode *vp, daddr_t bn, daddr_t *bnp, int *runp, int *runb)
bn = ap->in_off;
if (runb && bn) {
for (--bn; bn >= 0 && *runb < maxrun &&
is_sequential(ump,
is_sequential(ump,
((e2fs_daddr_t *)bp->b_data)[bn],
((e2fs_daddr_t *)bp->b_data)[bn + 1]);
--bn, ++*runb);
--bn, ++*runb);
}
}
}