Fixed some English errors in previous commit.

Fixed some style bugs in the removal of __P(()).  Whitespace before
"__P((" was not removed.
This commit is contained in:
Bruce Evans 2002-04-04 09:45:11 +00:00
parent 2654e1fc4e
commit a2f4e30c8c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=93775

View File

@ -188,12 +188,13 @@ mkfs(struct partition *pp, char *fsys, int fi, int fo)
sblock.fs_bsize = MINBSIZE;
}
if (sblock.fs_bsize < sblock.fs_fsize) {
printf("increasing block size from %d to fragsize (%d)\n",
printf("increasing block size from %d to fragment size (%d)\n",
sblock.fs_bsize, sblock.fs_fsize);
sblock.fs_bsize = sblock.fs_fsize;
}
if (sblock.fs_fsize * MAXFRAG < sblock.fs_bsize) {
printf("increasing fragsize from %d to block size / %d (%d)\n",
printf(
"increasing fragment size from %d to block size / %d (%d)\n",
sblock.fs_fsize, MAXFRAG, sblock.fs_bsize / MAXFRAG);
sblock.fs_fsize = sblock.fs_bsize / MAXFRAG;
}
@ -206,7 +207,7 @@ mkfs(struct partition *pp, char *fsys, int fi, int fo)
sblock.fs_frag = numfrags(&sblock, sblock.fs_bsize);
sblock.fs_fragshift = ilog2(sblock.fs_frag);
if (sblock.fs_frag > MAXFRAG) {
printf( "SYSERR: fragsize too small %d (block/frag ratio)\n",
printf("fragment size %d is still too small (can't happen)\n",
sblock.fs_bsize / MAXFRAG);
exit(21);
}