diff options
author | Yu Watanabe <watanabe.yu+github@gmail.com> | 2022-08-20 03:56:57 +0200 |
---|---|---|
committer | Daan De Meyer <daan.j.demeyer@gmail.com> | 2022-08-22 17:00:38 +0200 |
commit | 655eb07391aef911d7f2246e9fd1f0ee29de6a03 (patch) | |
tree | d70af5f94bcac58a0b8e25b470010ea0478b7fef /src/shared/gpt.c | |
parent | gpt: fix native uuids for s390x (diff) | |
download | systemd-655eb07391aef911d7f2246e9fd1f0ee29de6a03.tar.xz systemd-655eb07391aef911d7f2246e9fd1f0ee29de6a03.zip |
gpt: fix alignment
Diffstat (limited to '')
-rw-r--r-- | src/shared/gpt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/gpt.c b/src/shared/gpt.c index 37f3919724..86819cdf5e 100644 --- a/src/shared/gpt.c +++ b/src/shared/gpt.c @@ -34,7 +34,7 @@ const GptPartitionType gpt_partition_type_table[] = { _GPT_ARCH_SEXTET(PARISC, "parisc"), _GPT_ARCH_SEXTET(PPC, "ppc"), _GPT_ARCH_SEXTET(PPC64, "ppc64"), - _GPT_ARCH_SEXTET(PPC64_LE, "ppc64-le"), + _GPT_ARCH_SEXTET(PPC64_LE, "ppc64-le"), _GPT_ARCH_SEXTET(RISCV32, "riscv32"), _GPT_ARCH_SEXTET(RISCV64, "riscv64"), _GPT_ARCH_SEXTET(S390, "s390"), |