diff options
author | Eric Andersen | 2006-01-30 19:48:23 +0000 |
---|---|---|
committer | Eric Andersen | 2006-01-30 19:48:23 +0000 |
commit | 5e678873f9ff7c95d43b278feee547ce989b3b20 (patch) | |
tree | 6b0bab1e0d6df7f659352acc7dc844663c11634c /coreutils/ls.c | |
parent | 2cdd4d56ffc3b467d5ffa76e3c4cd009dc311097 (diff) | |
download | busybox-5e678873f9ff7c95d43b278feee547ce989b3b20.zip busybox-5e678873f9ff7c95d43b278feee547ce989b3b20.tar.gz |
clean up yet more annoying signed/unsigned mismatches and fixup
yet more incorrect types
Diffstat (limited to 'coreutils/ls.c')
-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 46ab865..489c29a 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c @@ -679,7 +679,7 @@ static int list_single(struct dnode *dn) break; case LIST_BLOCKS: #if _FILE_OFFSET_BITS == 64 - column += printf("%4lld ", dn->dstat.st_blocks >> 1); + column += printf("%4lld ", (long long)dn->dstat.st_blocks >> 1); #else column += printf("%4ld ", dn->dstat.st_blocks >> 1); #endif |