Commit 00301bbdd3

wozeparrot <wozeparrot@gmail.com>
2020-08-28 21:51:13
fix SimpleTextInputProtocol
1 parent 3750cc0
Changed files (1)
lib
std
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,