summaryrefslogtreecommitdiffstats
path: root/disk-utils/fdisk.c
diff options
context:
space:
mode:
authorKarel Zak2017-05-11 15:53:07 +0200
committerKarel Zak2017-05-11 15:53:07 +0200
commit84111dbae48d27d96596a9a78a93da02595fbda2 (patch)
treeaa2ce8aa8e9825bef7a87e75bcd1b422d9f2214f /disk-utils/fdisk.c
parentMerge branch 'master' of https://github.com/pali/util-linux (diff)
downloadkernel-qcow2-util-linux-84111dbae48d27d96596a9a78a93da02595fbda2.tar.gz
kernel-qcow2-util-linux-84111dbae48d27d96596a9a78a93da02595fbda2.tar.xz
kernel-qcow2-util-linux-84111dbae48d27d96596a9a78a93da02595fbda2.zip
fdisk: fix type dialog
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'disk-utils/fdisk.c')
-rw-r--r--disk-utils/fdisk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/disk-utils/fdisk.c b/disk-utils/fdisk.c
index f1cd3aa5a..832ae4959 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));