From 893adc4224a11611263d372a7feb135091b36685 Mon Sep 17 00:00:00 2001 From: gloit042 Date: Wed, 4 Nov 2020 12:46:24 +0800 Subject: [PATCH] goptions: correct postfix Signed-off-by: Jiahao Li --- goptions.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/goptions.c b/goptions.c index f44254bf..0b8c56a2 100644 --- a/goptions.c +++ b/goptions.c @@ -826,7 +826,7 @@ static struct gopt *gopt_new_str_val(struct gopt_job_view *gjv, unsigned long long *p, unsigned int idx) { struct gopt_str_val *g; - const gchar *postfix[] = { "B", "KiB", "MiB", "GiB", "PiB", "PiB", "" }; + const gchar *postfix[] = { "B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB" }; GtkWidget *label; int i; -- 2.25.1