summaryrefslogtreecommitdiff
path: root/util.c
diff options
context:
space:
mode:
authorAaron Marcher <me@drkhsh.at>2018-07-08 17:42:58 +0200
committerAaron Marcher <me@drkhsh.at>2018-07-08 17:42:58 +0200
commit96ddf4e1dee808d6ae8162fc1a13126a3d4c77dc (patch)
tree75f6d95fc7bbe3464c5f47574ab36a7514d0382e /util.c
parentc93971748cb4771aec25aee6e8ff5b7bbb1aacf3 (diff)
Consistency with 80 char limit and breaks
Diffstat (limited to 'util.c')
-rw-r--r--util.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/util.c b/util.c
index eaa3001..77324e8 100644
--- a/util.c
+++ b/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" };