summaryrefslogtreecommitdiffstats
path: root/sbin/newfs
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2002-03-18 02:43:14 +0000
committerbde <bde@FreeBSD.org>2002-03-18 02:43:14 +0000
commit445bbf88f37a4932dc208c7e5377865b9fafc0ae (patch)
tree03cd9c3854fe85983fcd6ff9a613d382dc167f3e /sbin/newfs
parent64fba574035a2432016a57d031f5d471f270ff50 (diff)
downloadFreeBSD-src-445bbf88f37a4932dc208c7e5377865b9fafc0ae.zip
FreeBSD-src-445bbf88f37a4932dc208c7e5377865b9fafc0ae.tar.gz
Fixed some style bugs (mainly ones not fixed or made worse by rev.1.41).
Old code obfuscates long (but single-line) messages by printing them in pieces using %s. Rev.1.41 obfuscated some new long messages using ISO string concatenation. This commit only fixes the new obfuscations.
Diffstat (limited to 'sbin/newfs')
-rw-r--r--sbin/newfs/mkfs.c28
1 files changed, 16 insertions, 12 deletions
diff --git a/sbin/newfs/mkfs.c b/sbin/newfs/mkfs.c
index e8548f1..67281d9 100644
--- a/sbin/newfs/mkfs.c
+++ b/sbin/newfs/mkfs.c
@@ -207,7 +207,7 @@ mkfs(pp, fsys, fi, fo)
if (fssize <= 0)
printf("preposterous size %d\n", fssize), exit(13);
wtfs(fssize - (realsectorsize / DEV_BSIZE), realsectorsize,
- (char *)&sblock);
+ (char *)&sblock);
/*
* collect and verify the sector and track info
*/
@@ -254,8 +254,9 @@ mkfs(pp, fsys, fi, fo)
exit(19);
}
if (sblock.fs_bsize < sblock.fs_fsize) {
- printf("block size (%d) cannot be smaller than "
- "fragment size (%d)\n", sblock.fs_bsize, sblock.fs_fsize);
+ printf(
+ "block size (%d) cannot be smaller than fragment size (%d)\n",
+ sblock.fs_bsize, sblock.fs_fsize);
exit(20);
}
sblock.fs_bmask = ~(sblock.fs_bsize - 1);
@@ -270,8 +271,9 @@ mkfs(pp, fsys, fi, fo)
for (sblock.fs_fragshift = 0, i = sblock.fs_frag; i > 1; i >>= 1)
sblock.fs_fragshift++;
if (sblock.fs_frag > MAXFRAG) {
- printf("fragment size %d is too small, minimum with "
- "block size %d is %d\n", sblock.fs_fsize, sblock.fs_bsize,
+ printf(
+ "fragment size %d is too small, minimum with block size %d is %d\n",
+ sblock.fs_fsize, sblock.fs_bsize,
sblock.fs_bsize / MAXFRAG);
exit(21);
}
@@ -565,12 +567,13 @@ next:
(cgdmin(&sblock, 0) + 3 * sblock.fs_frag));
exit(30);
}
- printf("Warning: inode blocks/cyl group (%ld) >= "
- "data blocks (%ld) in last\n",
+ printf(
+"Warning: inode blocks/cyl group (%ld) >= data blocks (%ld) in last\n",
(cgdmin(&sblock, j) - cgbase(&sblock, j)) / sblock.fs_frag,
i / sblock.fs_frag);
- printf(" cylinder group. This implies %ld sector(s) "
- "cannot be allocated.\n", i * NSPF(&sblock));
+ printf(
+" cylinder group. This implies %ld sector(s) cannot be allocated.\n",
+ i * NSPF(&sblock));
sblock.fs_ncg--;
sblock.fs_ncyl -= sblock.fs_ncyl % sblock.fs_cpg;
sblock.fs_size = fssize = sblock.fs_ncyl * sblock.fs_spc /
@@ -737,7 +740,8 @@ initcg(cylno, utime)
acg.cg_freeoff = acg.cg_iusedoff + howmany(sblock.fs_ipg, NBBY);
if (sblock.fs_contigsumsize <= 0) {
acg.cg_nextfreeoff = acg.cg_freeoff +
- howmany(sblock.fs_cpg * sblock.fs_spc / NSPF(&sblock), NBBY);
+ howmany(sblock.fs_cpg * sblock.fs_spc / NSPF(&sblock),
+ NBBY);
} else {
acg.cg_clustersumoff = acg.cg_freeoff + howmany
(sblock.fs_cpg * sblock.fs_spc / NSPF(&sblock), NBBY) -
@@ -749,8 +753,8 @@ initcg(cylno, utime)
acg.cg_nextfreeoff = acg.cg_clusteroff + howmany
(sblock.fs_cpg * sblock.fs_spc / NSPB(&sblock), NBBY);
}
- if (acg.cg_nextfreeoff - (long)(&acg.cg_firstfield) > sblock.fs_cgsize)
- {
+ if (acg.cg_nextfreeoff - (long)(&acg.cg_firstfield) >
+ sblock.fs_cgsize) {
printf("Panic: cylinder group too big\n");
exit(37);
}
OpenPOWER on IntegriCloud