diff options
-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) | |||
93 | disp_units_hdr = xasprintf("%s-blocks", | 93 | disp_units_hdr = xasprintf("%s-blocks", |
94 | make_human_readable_str(df_disp_hr, 0, !!(opt & OPT_POSIX))); | 94 | make_human_readable_str(df_disp_hr, 0, !!(opt & OPT_POSIX))); |
95 | #else | 95 | #else |
96 | disp_units_hdr = xasprintf("%d-blocks", df_disp_hr); | 96 | disp_units_hdr = xasprintf("%lu-blocks", df_disp_hr); |
97 | #endif | 97 | #endif |
98 | } | 98 | } |
99 | printf("Filesystem %-15sUsed Available %s Mounted on\n", | 99 | printf("Filesystem %-15sUsed Available %s Mounted on\n", |