aboutsummaryrefslogtreecommitdiff
path: root/lib/std
diff options
context:
space:
mode:
authorWoze Parrrot <wozeparrot@gmail.com>2020-09-26 20:44:49 -0400
committerAndrew Kelley <andrew@ziglang.org>2020-09-27 03:15:18 -0400
commited357f9897a6c96a1744307b1bc75a370dd85461 (patch)
treebde9fb1b56816aff67b1d66f7ead071a2c21901c /lib/std
parenta502604702726f3983f8a8b80bb73d9d5381baab (diff)
downloadzig-ed357f9897a6c96a1744307b1bc75a370dd85461.tar.gz
zig-ed357f9897a6c96a1744307b1bc75a370dd85461.zip
uefi system_table
Diffstat (limited to 'lib/std')
-rw-r--r--lib/std/os/uefi/tables/system_table.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/os/uefi/tables/system_table.zig b/lib/std/os/uefi/tables/system_table.zig
index cbe66fbb68..3f0624d2ce 100644
--- 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;