Consistency with 80 char limit and breaks
This commit is contained in:
parent
c93971748c
commit
96ddf4e1de
9 changed files with 86 additions and 82 deletions
3
util.c
3
util.c
|
@ -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" };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue