aboutsummaryrefslogtreecommitdiff
path: root/ls.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-04-05 23:26:44 +0000
committerEric Andersen <andersen@codepoet.org>2001-04-05 23:26:44 +0000
commit250a22176815303f9af072a11278108f7767282b (patch)
treedeb2971095d68588538830f0f0044ddf1eb5ae43 /ls.c
parent83f173b61ec4df708d6ead45540ede3a28c2e630 (diff)
downloadbusybox-250a22176815303f9af072a11278108f7767282b.tar.gz
more FILE_OFFSET_BITS == 64 adjustments.
Diffstat (limited to 'ls.c')
-rw-r--r--ls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ls.c b/ls.c
index 0b89ecce1..8f4cae10d 100644
--- a/ls.c
+++ b/ls.c
@@ -655,7 +655,7 @@ static int list_single(struct dnode *dn)
#endif
{
#if _FILE_OFFSET_BITS == 64
- printf("%9lld ", dn->dstat.st_size);
+ printf("%9lld ", (long long)dn->dstat.st_size);
#else
printf("%9ld ", dn->dstat.st_size);
#endif