From e562f8fb2810099cbb197b68d81f77aa0c19cd53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Tue, 20 Jan 2004 09:27:03 +0000 Subject: [PATCH] Use a larger field for the size in blocks; the current width (4 digits) is only good for 5 MB. --- usr.bin/find/ls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr.bin/find/ls.c b/usr.bin/find/ls.c index 4fb450b26322..88e45938cc6d 100644 --- a/usr.bin/find/ls.c +++ b/usr.bin/find/ls.c @@ -67,7 +67,7 @@ printlong(char *name, char *accpath, struct stat *sb) { char modep[15]; - (void)printf("%6lu %4"PRId64" ", (u_long) sb->st_ino, sb->st_blocks); + (void)printf("%6lu %8"PRId64" ", (u_long) sb->st_ino, sb->st_blocks); (void)strmode(sb->st_mode, modep); (void)printf("%s %3u %-*s %-*s ", modep, sb->st_nlink, MAXLOGNAME - 1, user_from_uid(sb->st_uid, 0), MAXLOGNAME - 1,