From: Karel Zak Date: Thu, 11 May 2017 13:53:07 +0000 (+0200) Subject: fdisk: fix type dialog X-Git-Tag: v2.30-rc1~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84111dbae48d27d96596a9a78a93da02595fbda2;p=thirdparty%2Futil-linux.git fdisk: fix type dialog Signed-off-by: Karel Zak --- diff --git a/disk-utils/fdisk.c b/disk-utils/fdisk.c index f1cd3aa5a5..832ae49591 100644 --- a/disk-utils/fdisk.c +++ b/disk-utils/fdisk.c @@ -432,8 +432,8 @@ static struct fdisk_parttype *ask_partition_type(struct fdisk_context *cxt) return NULL; q = fdisk_label_has_code_parttypes(lb) ? - _("Partition type (type L to list all types): ") : - _("Hex code (type L to list all codes): "); + _("Hex code (type L to list all codes): ") : + _("Partition type (type L to list all types): "); do { char buf[256]; int rc = get_user_reply(cxt, q, buf, sizeof(buf));