acpi: Fix wrong data type in tables header

This commit is contained in:
Sebastian 2021-08-19 18:13:20 -05:00 committed by GitHub
parent fa0aa6d7b9
commit 904488c60f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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));