summaryrefslogtreecommitdiff
path: root/coreutils/df.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-09-25 10:41:15 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-09-25 10:41:15 +0000
commite0bcba18eb9c185cefbef2ef05b846f735bd133a (patch)
tree105c167d1ad97a9dc215e1be7f8b86731a53c7c8 /coreutils/df.c
parentea7c9b3366f0e97273b011b3c0b3fee9a25e8c15 (diff)
downloadbusybox-e0bcba18eb9c185cefbef2ef05b846f735bd133a.tar.gz
df: unsigned long needs %lu
Diffstat (limited to 'coreutils/df.c')
-rw-r--r--coreutils/df.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/df.c b/coreutils/df.c
index fd2502309..1c7d6cb38 100644
--- a/coreutils/df.c
+++ b/coreutils/df.c
@@ -93,7 +93,7 @@ int df_main(int argc, char **argv)
disp_units_hdr = xasprintf("%s-blocks",
make_human_readable_str(df_disp_hr, 0, !!(opt & OPT_POSIX)));
#else
- disp_units_hdr = xasprintf("%d-blocks", df_disp_hr);
+ disp_units_hdr = xasprintf("%lu-blocks", df_disp_hr);
#endif
}
printf("Filesystem %-15sUsed Available %s Mounted on\n",