diff options
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/ls.c | 2 |
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) #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 |