Consistency with 80 char limit and breaks

This commit is contained in:
Aaron Marcher
2018-07-08 17:42:58 +02:00
parent c93971748c
commit 96ddf4e1de
9 changed files with 86 additions and 82 deletions

3
util.c
View File

@ -99,7 +99,8 @@ fmt_human(uintmax_t num, int base)
double scaled;
size_t i, prefixlen;
const char **prefix;
const char *prefix_1000[] = { "", "k", "M", "G", "T", "P", "E", "Z", "Y" };
const char *prefix_1000[] = { "", "k", "M", "G", "T", "P", "E", "Z",
"Y" };
const char *prefix_1024[] = { "", "Ki", "Mi", "Gi", "Ti", "Pi", "Ei",
"Zi", "Yi" };