summaryrefslogtreecommitdiff
path: root/disk
diff options
context:
space:
mode:
authorVincent Tinelli <vincent.tinelli@intel.com>2017-02-27 16:11:15 +0200
committerTom Rini <trini@konsulko.com>2017-03-17 14:15:10 -0400
commit9da52f8f67b32a21a687602681f6b6b6b7df480b (patch)
treef57f6f72cd3ae43aedb6dc05a82ccf2b8a4e542e /disk
parent2c79fd401982c7d6c5e77c09bc7035f8a3766c88 (diff)
gpt: Fix uuid string format
Change GPT UUID string format from UUID to GUID per specification. Signed-off-by: Vincent Tinelli <vincent.tinelli@intel.com> Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'disk')
-rw-r--r--disk/part_efi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/disk/part_efi.c b/disk/part_efi.c
index 893cbbdbda..db0c890d5b 100644
--- a/disk/part_efi.c
+++ b/disk/part_efi.c
@@ -463,7 +463,7 @@ int gpt_fill_pte(gpt_header *gpt_h, gpt_entry *gpt_e,
str_uuid = partitions[i].uuid;
bin_uuid = gpt_e[i].unique_partition_guid.b;
- if (uuid_str_to_bin(str_uuid, bin_uuid, UUID_STR_FORMAT_STD)) {
+ if (uuid_str_to_bin(str_uuid, bin_uuid, UUID_STR_FORMAT_GUID)) {
printf("Partition no. %d: invalid guid: %s\n",
i, str_uuid);
return -1;