diff options
author | Alexander Graf <agraf@suse.de> | 2017-12-04 16:33:51 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2017-12-05 22:56:17 +0100 |
commit | bb0bb91cf0aa2c13528fe39be2006f32f7b9c437 (patch) | |
tree | 39605e0a760483d05cc40229b76d9f27b2c0540d | |
parent | 3bb74f9800cdc4cf10a87f2725242c2565256654 (diff) |
efi_stub: Use efi_uintn_t
Commit f5a2a93892f ("efi_loader: consistently use efi_uintn_t in boot
services") changed the internal EFI API header without adapting its existing
EFI stub users. Let's adapt the EFI stub as well.
Fixes: f5a2a93892f ("efi_loader: consistently use efi_uintn_t in boot services")
Signed-off-by: Alexander Graf <agraf@suse.de>
Reviewed-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
-rw-r--r-- | lib/efi/efi_stub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/efi/efi_stub.c b/lib/efi/efi_stub.c index 1814960572..2e8d409d31 100644 --- a/lib/efi/efi_stub.c +++ b/lib/efi/efi_stub.c @@ -277,7 +277,7 @@ efi_status_t efi_main(efi_handle_t image, struct efi_system_table *sys_table) struct efi_boot_services *boot = sys_table->boottime; struct efi_mem_desc *desc; struct efi_entry_memmap map; - ulong key, desc_size, size; + efi_uintn_t key, desc_size, size; efi_status_t ret; u32 version; int cs32; |