summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-08-25 04:52:32 +0200
committerDan McGee <dan@archlinux.org>2011-08-25 23:09:52 +0200
commit30cad47fb91dec0748551cb7d8607871b95785e5 (patch)
tree6b31d7ba31067365d598149b390cb63b77379cc5 /src
parentf7a3c4c8df95ad99e05dfd29c61d6877b13b09da (diff)
downloadpacman-30cad47fb91dec0748551cb7d8607871b95785e5.tar.gz
pacman-30cad47fb91dec0748551cb7d8607871b95785e5.tar.xz
Add a few more sizes to humanize_sizes()
Because why the hell not? Exbibyte, zebibyte, and yobibyte are going in, even though nothing bigger than the 2^60 exbibyte can be represented using an off_t variable anyway. Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/util.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pacman/util.c b/src/pacman/util.c
index d2aa29b9..fbc51eba 100644
--- a/src/pacman/util.c
+++ b/src/pacman/util.c
@@ -916,8 +916,10 @@ static char *pkg_get_location(alpm_pkg_t *pkg)
double humanize_size(off_t bytes, const char target_unit, int long_labels,
const char **label)
{
- static const char *shortlabels[] = {"B", "K", "M", "G", "T", "P"};
- static const char *longlabels[] = {"B", "KiB", "MiB", "GiB", "TiB", "PiB"};
+ static const char *shortlabels[] = {"B", "K", "M", "G",
+ "T", "P", "E", "Z", "Y"};
+ static const char *longlabels[] = {"B", "KiB", "MiB", "GiB",
+ "TiB", "PiB", "EiB", "ZiB", "YiB"};
static const int unitcount = sizeof(shortlabels) / sizeof(shortlabels[0]);
const char **labels = long_labels ? longlabels : shortlabels;