diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-09-25 10:41:15 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-09-25 10:41:15 +0000 |
commit | e0bcba18eb9c185cefbef2ef05b846f735bd133a (patch) | |
tree | 105c167d1ad97a9dc215e1be7f8b86731a53c7c8 /coreutils | |
parent | ea7c9b3366f0e97273b011b3c0b3fee9a25e8c15 (diff) |
df: unsigned long needs %lu
Diffstat (limited to 'coreutils')
-rw-r--r-- | coreutils/df.c | 2 |
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", |