commit 00301bbdd3d8e5df3ac147353e7cc9c67f65901f (tree)
parent 3750cc06fda89c076da850a430d39d959ce45a99
Author: wozeparrot <wozeparrot@gmail.com>
Date: Fri, 28 Aug 2020 15:51:13 -0400
fix SimpleTextInputProtocol
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/std/os/uefi/protocols/simple_text_input_protocol.zig b/lib/std/os/uefi/protocols/simple_text_input_protocol.zig
@@ -11,7 +11,7 @@ const Status = uefi.Status;
/// Character input devices, e.g. Keyboard
pub const SimpleTextInputProtocol = extern struct {
- _reset: fn (*const SimpleTextInputProtocol, bool) callconv(.C) usize,
+ _reset: fn (*const SimpleTextInputProtocol, bool) callconv(.C) Status,
_read_key_stroke: fn (*const SimpleTextInputProtocol, *InputKey) callconv(.C) Status,
wait_for_key: Event,