Follow International System of Units spacing rules

This commit is contained in:
Ingo Feinerer 2019-02-16 17:59:44 +01:00 committed by Aaron Marcher
parent 93daf4f35e
commit b14e039639
1 changed files with 1 additions and 1 deletions

2
util.c
View File

@ -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