diff options
| author | Heinrich Schuchardt <[email protected]> | 2018-04-03 22:29:30 +0200 |
|---|---|---|
| committer | Alexander Graf <[email protected]> | 2018-04-04 11:36:08 +0200 |
| commit | 7fb96a10b31953cde698326a61e963ba9df1dc1f (patch) | |
| tree | daa9b80bdf9d2a8acf8611b494bb2ef6829bbdda /include | |
| parent | eab2dc37ee457191583c5d9ff26ce9d7ccda3637 (diff) | |
efi_loader: use efi_uintn_t for LoadImage
We generally use efi_uintn_t where the UEFI spec uses UINTN.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Signed-off-by: Alexander Graf <[email protected]>
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 d956aee560b..d9a69dbc005 100644 --- a/include/efi_api.h +++ b/include/efi_api.h @@ -107,7 +107,7 @@ struct efi_boot_services { efi_status_t (EFIAPI *load_image)(bool boot_policiy, efi_handle_t parent_image, struct efi_device_path *file_path, void *source_buffer, - unsigned long source_size, efi_handle_t *image); + efi_uintn_t source_size, efi_handle_t *image); efi_status_t (EFIAPI *start_image)(efi_handle_t handle, unsigned long *exitdata_size, s16 **exitdata); |
