authorgravatar for ybham6@gmail.comfifty-six <ybham6@gmail.com> 2022-01-16 02:52:45-05:00
committergravatar for ybham6@gmail.comfifty-six <ybham6@gmail.com> 2022-01-16 02:52:45-05:00
logc727bd1bb68917f39f03f68765c5db7572069729
tree8dc0c3d5934217aed9131126cc4114e7fd2bf9dc
parent628a7f85deb500624fb75f83014d3bc1a1c03cf4

std/os/uefi: Fix parameter type mismatch in edid_override_protocol


1 files changed, 1 insertions(+), 1 deletions(-)

lib/std/os/uefi/protocols/edid_override_protocol.zig+1-1
......@@ -9,7 +9,7 @@ pub const EdidOverrideProtocol = extern struct {
99
1010 /// Returns policy information and potentially a replacement EDID for the specified video output device.
1111 pub fn getEdid(self: *const EdidOverrideProtocol, handle: Handle, attributes: *EdidOverrideProtocolAttributes, edid_size: *usize, edid: *?[*]u8) Status {
12 return self._get_edid(self, handle, attributes, edid_size, edid);
12 return self._get_edid(self, handle, @ptrCast(*u32, attributes), edid_size, edid);
1313 }
1414
1515 pub const guid align(8) = Guid{