zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit ed357f9897a6c96a1744307b1bc75a370dd85461 (tree)
parent a502604702726f3983f8a8b80bb73d9d5381baab
Author: Woze Parrrot <wozeparrot@gmail.com>
Date:   Sat, 26 Sep 2020 20:44:49 -0400

uefi system_table

Diffstat:
Mlib/std/os/uefi/tables/system_table.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/os/uefi/tables/system_table.zig b/lib/std/os/uefi/tables/system_table.zig @@ -35,7 +35,7 @@ pub const SystemTable = extern struct { runtime_services: *RuntimeServices, boot_services: ?*BootServices, number_of_table_entries: usize, - configuration_table: *ConfigurationTable, + configuration_table: [*]ConfigurationTable, pub const signature: u64 = 0x5453595320494249; pub const revision_1_02: u32 = (1 << 16) | 2;