]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
libfdisk: (script) be consistent in code with types
authorKarel Zak <kzak@redhat.com>
Fri, 12 Jan 2018 11:04:16 +0000 (12:04 +0100)
committerKarel Zak <kzak@redhat.com>
Fri, 12 Jan 2018 11:04:16 +0000 (12:04 +0100)
Signed-off-by: Karel Zak <kzak@redhat.com>
libfdisk/src/script.c

index ff377e1e8a5aa2a44c792fda15d491debfe391e8..972631cda5243beeae73b1ba067b95b6ce523209 100644 (file)
@@ -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;
 
                }