authorgravatar for m.rosowski1@wp.plMikołaj Rosowski <m.rosowski1@wp.pl> 2026-04-17 16:55:25+02:00
committergravatar for m.rosowski1@wp.plMikołaj Rosowski <m.rosowski1@wp.pl> 2026-04-17 22:33:17+02:00
log0473ddb1a7f94c3af7ddfd26cf714614c63fe314
tree0a7120ab2e3c10a7eb48d63be4f513dfe3e74d45
parenta3a1dd1d910864db80806aac43a173f3ca2ea6cf

std.os.uefi: fix `_(un)installMultipleProtocolInterface` signatures


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

lib/std/os/uefi/tables/boot_services.zig+2-2
......@@ -158,10 +158,10 @@ pub const BootServices = extern struct {
158158 _locateProtocol: *const fn (protocol: *const Guid, registration: ?EventRegistration, interface: *?*const anyopaque) callconv(cc) Status,
159159
160160 /// Installs one or more protocol interfaces into the boot services environment
161 _installMultipleProtocolInterfaces: *const fn (handle: *Handle, ...) callconv(cc) Status,
161 _installMultipleProtocolInterfaces: *const fn (handle: *?Handle, ...) callconv(cc) Status,
162162
163163 /// Removes one or more protocol interfaces into the boot services environment
164 _uninstallMultipleProtocolInterfaces: *const fn (handle: *Handle, ...) callconv(cc) Status,
164 _uninstallMultipleProtocolInterfaces: *const fn (handle: Handle, ...) callconv(cc) Status,
165165
166166 /// Computes and returns a 32-bit CRC for a data buffer.
167167 _calculateCrc32: *const fn (data: [*]const u8, data_size: usize, *u32) callconv(cc) Status,