aboutsummaryrefslogtreecommitdiff
path: root/toys/posix/du.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2015-08-08 21:10:44 -0500
committerRob Landley <rob@landley.net>2015-08-08 21:10:44 -0500
commit0fb465194789965b6fb2efd31995a2441144d650 (patch)
treec55819bbb0f6ea3a575d8adb05ad03e16ca34ae7 /toys/posix/du.c
parent11d2ff5ffac9382be0d6971b8ac84df21eca85df (diff)
downloadtoybox-0fb465194789965b6fb2efd31995a2441144d650.tar.gz
Different tools have different ideas about what human-readable output
looks like. dd uses "7 MB" where du uses "7M", for example. this patch adds flags, similar to the BSD humanize_number. most callers will pass 0.
Diffstat (limited to 'toys/posix/du.c')
-rw-r--r--toys/posix/du.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/du.c b/toys/posix/du.c
index 43029973..77c7b6e2 100644
--- a/toys/posix/du.c
+++ b/toys/posix/du.c
@@ -57,7 +57,7 @@ static void print(long long size, struct dirtree *node)
if (TT.maxdepth && TT.depth > TT.maxdepth) return;
if (toys.optflags & FLAG_h) {
- human_readable(toybuf, size);
+ human_readable(toybuf, size, 0);
printf("%s", toybuf);
} else {
int bits = 10;