fix(uefi MemoryDescriptor): padding after memory type
not 100% certain, just noticed that this is implemented slightly differently in rust
https://docs.rs/uefi/0.11.0/src/uefi/table/boot.rs.html#715
1 files changed, 1 insertions(+), 0 deletions(-)
lib
std
lib/std/os/uefi/tables/boot_services.zig+1
| ... | ... | @@ -179,6 +179,7 @@ pub const MemoryType = enum(u32) { |
| 179 | 179 | |
| 180 | 180 | pub const MemoryDescriptor = extern struct { |
| 181 | 181 | type: MemoryType, |
| 182 | padding: u32, |
| 182 | 183 | physical_start: u64, |
| 183 | 184 | virtual_start: u64, |
| 184 | 185 | number_of_pages: usize, |