aboutsummaryrefslogtreecommitdiff
path: root/coreutils/ls.c
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-05 23:26:44 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-05 23:26:44 +0000
commit918c64fd4346b0b13746a4e553fb318df405a619 (patch)
treedeb2971095d68588538830f0f0044ddf1eb5ae43 /coreutils/ls.c
parent4767502117153ce4dd87b13f6e814faf940f51ca (diff)
downloadbusybox-w32-918c64fd4346b0b13746a4e553fb318df405a619.tar.gz
busybox-w32-918c64fd4346b0b13746a4e553fb318df405a619.tar.bz2
busybox-w32-918c64fd4346b0b13746a4e553fb318df405a619.zip
more FILE_OFFSET_BITS == 64 adjustments.
git-svn-id: svn://busybox.net/trunk/busybox@2267 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils/ls.c')
-rw-r--r--coreutils/ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/ls.c b/coreutils/ls.c
index 0b89ecce1..8f4cae10d 100644
--- a/coreutils/ls.c
+++ b/coreutils/ls.c
@@ -655,7 +655,7 @@ static int list_single(struct dnode *dn)
655#endif 655#endif
656 { 656 {
657#if _FILE_OFFSET_BITS == 64 657#if _FILE_OFFSET_BITS == 64
658 printf("%9lld ", dn->dstat.st_size); 658 printf("%9lld ", (long long)dn->dstat.st_size);
659#else 659#else
660 printf("%9ld ", dn->dstat.st_size); 660 printf("%9ld ", dn->dstat.st_size);
661#endif 661#endif