Merge pull request #103 from Sebastian-byte/patch-1

acpi: Fix wrong data type in tables header
This commit is contained in:
mint 2021-08-20 10:42:30 +02:00 committed by GitHub
commit 1dbc6e3907
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));