aboutsummaryrefslogtreecommitdiff
path: root/ls.c
diff options
context:
space:
mode:
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)
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