From df8327e726dd90e9fc26abd66a2ff287a586ff44 Mon Sep 17 00:00:00 2001 From: Alexander Langer Date: Sun, 31 Aug 1997 01:27:04 +0000 Subject: [PATCH] Display file size as an unsigned long. --- usr.bin/fstat/fstat.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr.bin/fstat/fstat.c b/usr.bin/fstat/fstat.c index d80809e38dc..d8244bf230e 100644 --- a/usr.bin/fstat/fstat.c +++ b/usr.bin/fstat/fstat.c @@ -42,7 +42,7 @@ static const char copyright[] = static char sccsid[] = "@(#)fstat.c 8.3 (Berkeley) 5/2/95"; #endif static const char rcsid[] = - "$Id: fstat.c,v 1.11 1997/07/08 11:02:48 charnier Exp $"; + "$Id: fstat.c,v 1.12 1997/07/10 06:41:33 charnier Exp $"; #endif /* not lint */ #include @@ -460,7 +460,7 @@ vtrans(vp, i, flag) break; } default: - printf(" %6d", fst.size); + printf(" %6lu", fst.size); } rw[0] = '\0'; if (flag & FREAD) -- 2.45.2