diff options
author | Heinrich Schuchardt | 2019-05-18 17:07:52 +0200 |
---|---|---|
committer | Heinrich Schuchardt | 2019-05-19 08:10:10 +0200 |
commit | acee965263e8d04d07f9b36d54a4bc8bde30727c (patch) | |
tree | 9cab2810a28d86a37c994436f2006d983a7337b6 /include | |
parent | 1344f7d0f61d94fe475aeadb000ac6cafccd3920 (diff) |
efi_loader: EFI_SIMPLE_TEXT_INPUT_EX_PROTOCOL.SetState() correct parameter
KeyToggleState is a pointer according to UEFI spec 2.8.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/efi_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/efi_api.h b/include/efi_api.h index 7dcd82b6814..65584dd2d82 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -639,7 +639,7 @@ struct efi_simple_text_input_ex_protocol { struct efi_event *wait_for_key_ex; efi_status_t (EFIAPI *set_state) ( struct efi_simple_text_input_ex_protocol *this, - u8 key_toggle_state); + u8 *key_toggle_state); efi_status_t (EFIAPI *register_key_notify) ( struct efi_simple_text_input_ex_protocol *this, struct efi_key_data *key_data, |