diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2013-04-25 06:43:21 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2013-04-25 06:43:21 +0000 |
commit | 22fa7a0d6b1bf16508f64e347bf54adda43bf21c (patch) | |
tree | dc33991e99b823eb6b1a6a3a660fbdc1a9b6ea6b /sbin/fsck_ffs | |
parent | 4178f6843ad1f6377b10c1fe96b0a0a4ab4f2cd3 (diff) |
big int_t/time_t fixes; ok deraadt@ krw@
Diffstat (limited to 'sbin/fsck_ffs')
-rw-r--r-- | sbin/fsck_ffs/main.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sbin/fsck_ffs/main.c b/sbin/fsck_ffs/main.c index ec2798cebbd..6edc77835e8 100644 --- a/sbin/fsck_ffs/main.c +++ b/sbin/fsck_ffs/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.38 2011/04/24 07:07:03 otto Exp $ */ +/* $OpenBSD: main.c,v 1.39 2013/04/25 06:43:20 otto Exp $ */ /* $NetBSD: main.c,v 1.22 1996/10/11 20:15:48 thorpej Exp $ */ /* @@ -262,7 +262,8 @@ checkfilesys(char *filesys, char *mntpt, long auxdata, int child) if (zlnhead != NULL) { printf("The following zero link count inodes remain:"); for (zlnp = zlnhead; zlnp; zlnp = zlnp->next) - printf(" %u,", zlnp->zlncnt); + printf(" %llu,", + (unsigned long long)zlnp->zlncnt); printf("\n"); } } |