summaryrefslogtreecommitdiffstats
path: root/sbin/fsck_ffs/suj.c
diff options
context:
space:
mode:
authormdf <mdf@FreeBSD.org>2012-09-28 17:34:34 +0000
committermdf <mdf@FreeBSD.org>2012-09-28 17:34:34 +0000
commit186eb51daa2f37de906b898ca8e70b4e60e3e0ce (patch)
treee87d3cfba3279b2a48d693f282a9a0ccda120dba /sbin/fsck_ffs/suj.c
parent1e08816c2ce7e17bd776a861a8c6bb4382ff59eb (diff)
downloadFreeBSD-src-186eb51daa2f37de906b898ca8e70b4e60e3e0ce.zip
FreeBSD-src-186eb51daa2f37de906b898ca8e70b4e60e3e0ce.tar.gz
Fix some nearby type and style errors.
Pointed out by: bde
Diffstat (limited to 'sbin/fsck_ffs/suj.c')
-rw-r--r--sbin/fsck_ffs/suj.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/fsck_ffs/suj.c b/sbin/fsck_ffs/suj.c
index 1ef5d51..0800a5c 100644
--- a/sbin/fsck_ffs/suj.c
+++ b/sbin/fsck_ffs/suj.c
@@ -1401,9 +1401,8 @@ ino_adjust(struct suj_ino *sino)
ip = ino_read(ino);
mode = DIP(ip, di_mode) & IFMT;
if (nlink > LINK_MAX)
- err_suj("ino %ju %s, new link %d, old link %d\n",
- (uintmax_t)ino, "nlink manipulation error", nlink,
- DIP(ip, di_nlink));
+ err_suj("ino %ju nlink manipulation error, new %d, old %d\n",
+ (uintmax_t)ino, nlink, DIP(ip, di_nlink));
if (debug)
printf("Adjusting ino %ju, nlink %d, old link %d lastmode %o\n",
(uintmax_t)ino, nlink, DIP(ip, di_nlink), sino->si_mode);
OpenPOWER on IntegriCloud