| Follow International System of Units spacing rules - slstatus - status monitor | |
| git clone git://git.suckless.org/slstatus | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit b14e039639ed28005fbb8bddeb5b5fa0c93475ac | |
| parent 93daf4f35e2b72e64d4e0de79159a8c26241bfa2 | |
| Author: Ingo Feinerer <[email protected]> | |
| Date: Sat, 16 Feb 2019 17:59:44 +0100 | |
| Follow International System of Units spacing rules | |
| Diffstat: | |
| M util.c | 2 +- | |
| 1 file changed, 1 insertion(+), 1 deletion(-) | |
| --- | |
| diff --git 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 |