aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--coreutils/df.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/df.c b/coreutils/df.c
index 624ad94ba..a0e6fe070 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)