summaryrefslogtreecommitdiffstats
path: root/contrib/mtree/create.c
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/mtree/create.c')
-rw-r--r--contrib/mtree/create.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/mtree/create.c b/contrib/mtree/create.c
index 8601cfa..eb7bce1 100644
--- a/contrib/mtree/create.c
+++ b/contrib/mtree/create.c
@@ -224,7 +224,8 @@ statf(FILE *fp, int indent, FTSENT *p)
output(fp, indent, &offset, "device=%#jx",
(uintmax_t)p->fts_statp->st_rdev);
if (keys & F_NLINK && p->fts_statp->st_nlink != 1)
- output(fp, indent, &offset, "nlink=%u", p->fts_statp->st_nlink);
+ output(fp, indent, &offset, "nlink=%ju",
+ (uintmax_t)p->fts_statp->st_nlink);
if (keys & F_SIZE &&
(flavor == F_FREEBSD9 || S_ISREG(p->fts_statp->st_mode)))
output(fp, indent, &offset, "size=%ju",
OpenPOWER on IntegriCloud