diff options
| author | Karel Zak <kzak@redhat.com> | 2018-01-12 12:04:16 +0100 |
|---|---|---|
| committer | Karel Zak <kzak@redhat.com> | 2018-01-12 12:04:16 +0100 |
| commit | e92b6f68c43612f669d4c59871f8b6ff2c7deff5 (patch) | |
| tree | 9681c026a81a5f5c58e8d7c1ade92e55f75c024d /libfdisk/src/script.c | |
| parent | bc9ca775a2027a4b587a0fddffb18068e2803199 (diff) | |
| download | util-linux-e92b6f68c43612f669d4c59871f8b6ff2c7deff5.tar.gz | |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |
