summaryrefslogtreecommitdiffstats
path: root/libfdisk/src/script.c
diff options
context:
space:
mode:
authorKarel Zak2018-01-12 12:04:16 +0100
committerKarel Zak2018-01-12 12:04:16 +0100
commite92b6f68c43612f669d4c59871f8b6ff2c7deff5 (patch)
tree9681c026a81a5f5c58e8d7c1ade92e55f75c024d /libfdisk/src/script.c
parentMerge branch 'mbsencode' of https://github.com/yontalcar/util-linux (diff)
downloadkernel-qcow2-util-linux-e92b6f68c43612f669d4c59871f8b6ff2c7deff5.tar.gz
kernel-qcow2-util-linux-e92b6f68c43612f669d4c59871f8b6ff2c7deff5.tar.xz
kernel-qcow2-util-linux-e92b6f68c43612f669d4c59871f8b6ff2c7deff5.zip
libfdisk: (script) be consistent in code with types
Signed-off-by: Karel Zak <kzak@redhat.com>
Diffstat (limited to 'libfdisk/src/script.c')
-rw-r--r--libfdisk/src/script.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libfdisk/src/script.c b/libfdisk/src/script.c
index ff377e1e8..972631cda 100644
--- a/libfdisk/src/script.c
+++ b/libfdisk/src/script.c
@@ -1017,10 +1017,10 @@ static struct fdisk_parttype *translate_type_shortcuts(struct fdisk_script *dp,
type = "EF";
break;
case 'R': /* Linux RAID */
- type = "fd";
+ type = "FD";
break;
case 'V': /* LVM */
- type = "8e";
+ type = "8E";
break;
}