[git commit master] df: trivial 64-bit fix

Denys Vlasenko vda.linux at googlemail.com
Wed Oct 21 21:28:20 UTC 2009


commit: http://git.busybox.net/busybox/commit/?id=a46317b6f34be8575ebf3857c58f9e5a42781a75
branch: http://git.busybox.net/busybox/commit/?id=refs/heads/master

Signed-off-by: Denys Vlasenko <vda.linux at googlemail.com>
---
 coreutils/df.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/coreutils/df.c b/coreutils/df.c
index 624ad94..a0e6fe0 100644
--- a/coreutils/df.c
+++ b/coreutils/df.c
@@ -183,7 +183,7 @@ int df_main(int argc, char **argv)
 			if (dev_len > 20) {
 				printf("%s\n%20s", device, "");
 			} else {
-				printf("%s%*s", device, 20 - dev_len, "");
+				printf("%s%*s", device, 20 - (int)dev_len, "");
 			}
 #else
 			if (printf("\n%-20s" + 1, device) > 20)
-- 
1.6.3.3



More information about the busybox-cvs mailing list