diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-01-30 19:48:23 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-01-30 19:48:23 +0000 |
commit | 5e678873f9ff7c95d43b278feee547ce989b3b20 (patch) | |
tree | 6b0bab1e0d6df7f659352acc7dc844663c11634c /coreutils/ls.c | |
parent | 2cdd4d56ffc3b467d5ffa76e3c4cd009dc311097 (diff) | |
download | busybox-w32-5e678873f9ff7c95d43b278feee547ce989b3b20.tar.gz busybox-w32-5e678873f9ff7c95d43b278feee547ce989b3b20.tar.bz2 busybox-w32-5e678873f9ff7c95d43b278feee547ce989b3b20.zip |
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 46ab865dd..489c29ad1 100644 --- a/coreutils/ls.c +++ b/coreutils/ls.c | |||
@@ -679,7 +679,7 @@ static int list_single(struct dnode *dn) | |||
679 | break; | 679 | break; |
680 | case LIST_BLOCKS: | 680 | case LIST_BLOCKS: |
681 | #if _FILE_OFFSET_BITS == 64 | 681 | #if _FILE_OFFSET_BITS == 64 |
682 | column += printf("%4lld ", dn->dstat.st_blocks >> 1); | 682 | column += printf("%4lld ", (long long)dn->dstat.st_blocks >> 1); |
683 | #else | 683 | #else |
684 | column += printf("%4ld ", dn->dstat.st_blocks >> 1); | 684 | column += printf("%4ld ", dn->dstat.st_blocks >> 1); |
685 | #endif | 685 | #endif |