From 9f60cc9e43147609ab0026147f658e4081e9e74d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Wed, 15 May 2002 08:01:31 +0000 Subject: [PATCH] Unbreak Alpha build. --- usr.sbin/quot/quot.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/usr.sbin/quot/quot.c b/usr.sbin/quot/quot.c index 755493578e58..f5e91826ac0b 100644 --- a/usr.sbin/quot/quot.c +++ b/usr.sbin/quot/quot.c @@ -35,6 +35,7 @@ static const char rcsid[] = #endif /* not lint */ #include +#include #include #include #include @@ -406,8 +407,9 @@ dofsizes(fd,super,name) for (fp = fsizes; fp; fp = fp->fsz_next) { for (i = 0; i < FSZCNT; i++) { if (fp->fsz_count[i]) - printf("%d\t%d\t%d\n",fp->fsz_first + i, - fp->fsz_count[i], + printf("%jd\t%jd\t%d\n", + (intmax_t)(fp->fsz_first + i), + (intmax_t)fp->fsz_count[i], SIZE(sz += fp->fsz_sz[i])); } }