diff options
author | Heinrich Schuchardt <xypron.glpk@gmx.de> | 2017-11-06 21:17:48 +0100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2017-12-01 13:22:56 +0100 |
commit | f5a2a93892ff8a8f066bc9f84eb9f0cf35ba0c67 (patch) | |
tree | 7bb87285533f9860b6c1af9993212e85722214ac /lib/efi_selftest/efi_selftest_manageprotocols.c | |
parent | 152cade32643fdbdd73614db4cfb159876b58262 (diff) |
efi_loader: consistently use efi_uintn_t in boot services
Consistenly use efi_uintn_t wherever the UEFI spec uses
UINTN in boot services interfaces.
Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'lib/efi_selftest/efi_selftest_manageprotocols.c')
-rw-r--r-- | lib/efi_selftest/efi_selftest_manageprotocols.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/efi_selftest/efi_selftest_manageprotocols.c b/lib/efi_selftest/efi_selftest_manageprotocols.c index e978dd7f2fd..f20f1528d47 100644 --- a/lib/efi_selftest/efi_selftest_manageprotocols.c +++ b/lib/efi_selftest/efi_selftest_manageprotocols.c @@ -138,9 +138,9 @@ static int execute(void) efi_status_t ret; efi_handle_t *buffer; size_t buffer_size; - unsigned long int count = 0; + efi_uintn_t count = 0; efi_guid_t **prot_buffer; - unsigned long int prot_count; + efi_uintn_t prot_count; /* * Test HandleProtocol |