From 96c65ccb2faccef1648638969dcd6b7356f03edd Mon Sep 17 00:00:00 2001 From: Ian Dowse Date: Sun, 7 Dec 2003 17:00:14 +0000 Subject: [PATCH] Print out the file system access statistics using uintmax_t types instead of casting the unsigned 64-bit values to longs. Suggested by: bde --- sbin/mount/mount.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/sbin/mount/mount.c b/sbin/mount/mount.c index ff4fb8c2b784..75e72bf64bbe 100644 --- a/sbin/mount/mount.c +++ b/sbin/mount/mount.c @@ -57,6 +57,7 @@ static const char rcsid[] = #include #include #include +#include #include #include #include @@ -530,11 +531,13 @@ prmount(sfp) } if (verbose) { if (sfp->f_syncwrites != 0 || sfp->f_asyncwrites != 0) - (void)printf(", writes: sync %ld async %ld", - (long)sfp->f_syncwrites, (long)sfp->f_asyncwrites); + (void)printf(", writes: sync %ju async %ju", + (uintmax_t)sfp->f_syncwrites, + (uintmax_t)sfp->f_asyncwrites); if (sfp->f_syncreads != 0 || sfp->f_asyncreads != 0) - (void)printf(", reads: sync %ld async %ld", - (long)sfp->f_syncreads, (long)sfp->f_asyncreads); + (void)printf(", reads: sync %ju async %ju", + (uintmax_t)sfp->f_syncreads, + (uintmax_t)sfp->f_asyncreads); if (sfp->f_fsid.val[0] != 0 || sfp->f_fsid.val[1] != 0) { printf(", fsid "); for (i = 0; i < sizeof(sfp->f_fsid); i++)