aboutsummaryrefslogtreecommitdiff
path: root/cmd/efi_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/efi_common.c')
-rw-r--r--cmd/efi_common.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/cmd/efi_common.c b/cmd/efi_common.c
index f4056096cd..1aa2351fcd 100644
--- a/cmd/efi_common.c
+++ b/cmd/efi_common.c
@@ -17,10 +17,8 @@ void efi_show_tables(struct efi_system_table *systab)
for (i = 0; i < systab->nr_tables; i++) {
struct efi_configuration_table *tab = &systab->tables[i];
- char guid_str[37];
- uuid_bin_to_str(tab->guid.b, guid_str, 1);
- printf("%p %pUl %s\n", tab->table, guid_str,
+ printf("%p %pUl %s\n", tab->table, tab->guid.b,
uuid_guid_get_str(tab->guid.b) ?: "(unknown)");
}
}