commit b14e039639ed28005fbb8bddeb5b5fa0c93475ac
Author: Ingo Feinerer <[email protected]>
AuthorDate: Sat Feb 16 17:59:44 2019 +0100
Commit: Aaron Marcher <[email protected]>
CommitDate: Sun Feb 17 16:53:56 2019 +0100
Follow International System of Units spacing rules
diff --git a/util.c b/util.c
index 77324e8..85366bf 100644
--- a/util.c
+++ b/util.c
@@ -123,7 +123,7 @@ fmt_human(uintmax_t num, int base)
scaled /= base;
}
- return bprintf("%.1f%s", scaled, prefix[i]);
+ return bprintf("%.1f %s", scaled, prefix[i]);
}
int