summaryrefslogtreecommitdiffstats
path: root/sbin/fsck/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'sbin/fsck/setup.c')
-rw-r--r--sbin/fsck/setup.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/sbin/fsck/setup.c b/sbin/fsck/setup.c
index fe6f2ea..5fb5697 100644
--- a/sbin/fsck/setup.c
+++ b/sbin/fsck/setup.c
@@ -157,7 +157,7 @@ setup(dev)
sbdirty();
}
}
- if (sblock.fs_interleave < 1 ||
+ if (sblock.fs_interleave < 1 ||
sblock.fs_interleave > sblock.fs_nsect) {
pwarn("IMPOSSIBLE INTERLEAVE=%d IN SUPERBLOCK",
sblock.fs_interleave);
@@ -169,7 +169,7 @@ setup(dev)
dirty(&asblk);
}
}
- if (sblock.fs_npsect < sblock.fs_nsect ||
+ if (sblock.fs_npsect < sblock.fs_nsect ||
sblock.fs_npsect > sblock.fs_nsect*2) {
pwarn("IMPOSSIBLE NPSECT=%d IN SUPERBLOCK",
sblock.fs_npsect);
@@ -277,7 +277,7 @@ setup(dev)
}
lncntp = (short *)calloc((unsigned)(maxino + 1), sizeof(short));
if (lncntp == NULL) {
- printf("cannot alloc %u bytes for lncntp\n",
+ printf("cannot alloc %u bytes for lncntp\n",
(unsigned)(maxino + 1) * sizeof(short));
goto badsb;
}
@@ -289,7 +289,7 @@ setup(dev)
inphead = (struct inoinfo **)calloc((unsigned)numdirs,
sizeof(struct inoinfo *));
if (inpsort == NULL || inphead == NULL) {
- printf("cannot alloc %u bytes for inphead\n",
+ printf("cannot alloc %u bytes for inphead\n",
(unsigned)numdirs * sizeof(struct inoinfo *));
goto badsb;
}
OpenPOWER on IntegriCloud