From 904488c60fd146146c18ea9f7703c5c32033ab15 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Thu, 19 Aug 2021 18:13:20 -0500 Subject: [PATCH] acpi: Fix wrong data type in tables header --- stage23/lib/acpi.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stage23/lib/acpi.h b/stage23/lib/acpi.h index 226ef6c4..26c64876 100644 --- a/stage23/lib/acpi.h +++ b/stage23/lib/acpi.h @@ -14,7 +14,7 @@ struct sdt { char oem_id[6]; char oem_table_id[8]; uint32_t oem_rev; - uint32_t creator_id; + char creator_id[4]; uint32_t creator_rev; } __attribute__((packed));