From: Karel Zak Date: Fri, 12 Jan 2018 11:04:16 +0000 (+0100) Subject: libfdisk: (script) be consistent in code with types X-Git-Tag: v2.32-rc1~98 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e92b6f68c43612f669d4c59871f8b6ff2c7deff5;p=thirdparty%2Futil-linux.git libfdisk: (script) be consistent in code with types Signed-off-by: Karel Zak --- diff --git a/libfdisk/src/script.c b/libfdisk/src/script.c index ff377e1e8a..972631cda5 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; }