aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/df.c
diff options
context:
space:
mode:
Diffstat (limited to 'toys/posix/df.c')
-rw-r--r--toys/posix/df.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/toys/posix/df.c b/toys/posix/df.c
index caf8cf89..e07b33bf 100644
--- a/toys/posix/df.c
+++ b/toys/posix/df.c
@@ -4,7 +4,7 @@
*
* See http://opengroup.org/onlinepubs/9699919799/utilities/df.html
-USE_DF(NEWTOY(df, "HPkhit*a[-HPh]", TOYFLAG_SBIN))
+USE_DF(NEWTOY(df, "HPkhit*a[-HPh]", TOYFLAG_BIN))
config DF
bool "df"
@@ -115,7 +115,7 @@ static void show_mt(struct mtab_list *mt, int measuring)
suap[i] = (block*suap[i])/TT.units;
if (FLAG(H)||FLAG(h))
- human_readable(dsuapm[i+1], suap[i], FLAG(H) ? HR_1000 : 0);
+ human_readable(dsuapm[i+1], suap[i], HR_1000*FLAG(H));
else sprintf(dsuapm[i+1], "%llu", suap[i]);
dsuapm[i+2] = strchr(dsuapm[i+1], 0)+1;
}