From: Benno Schulenberg Date: Sun, 1 Feb 2015 14:00:06 +0000 (+0100) Subject: cfdisk: remove the mistaken B from the explanation of size suffixes X-Git-Tag: v2.26-rc2~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a4fbbbd49141bd9613f7adac2760071fbd8356bf;p=thirdparty%2Futil-linux.git cfdisk: remove the mistaken B from the explanation of size suffixes Also reword the explanation to be clearer. It is not necessary to be complete -- that is what the man page is for. Signed-off-by: Benno Schulenberg --- diff --git a/disk-utils/cfdisk.c b/disk-utils/cfdisk.c index 9455910f7c..f1d4745cff 100644 --- a/disk-utils/cfdisk.c +++ b/disk-utils/cfdisk.c @@ -1507,8 +1507,8 @@ static int ui_get_size(struct cfdisk *cf, const char *prompt, uintmax_t *res, snprintf(buf, sizeof(buf), "%s", dflt); rc = ui_get_string(cf, prompt, - _("May be followed by {M,B,G,T}iB " - "(the \"iB\" is optional) or S for sectors."), + _("May be followed by M for MiB, G for GiB, " + "T for TiB, or S for sectors."), buf, sizeof(buf)); if (rc == 0) { ui_warnx(_("Please, specify size."));