diff options
| author | Peter Jones <pjones@redhat.com> | 2017-02-14 11:54:59 -0500 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2017-03-27 14:16:42 -0400 |
| commit | d00ea5558eff006f244651b1593b4db2c8e85151 (patch) | |
| tree | 3c6bde79beff50e44f28cc4ceedf169018c58f59 /httpboot.c | |
| parent | 29f3c91d4eba095de8c737dc3badc6ea91b84c0f (diff) | |
| download | efi-boot-shim-d00ea5558eff006f244651b1593b4db2c8e85151.tar.gz efi-boot-shim-d00ea5558eff006f244651b1593b4db2c8e85151.zip | |
Fix some i386 type casting errors
Signed-off-by: Peter Jones <pjones@redhat.com>
Diffstat (limited to 'httpboot.c')
| -rw-r--r-- | httpboot.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -506,7 +506,7 @@ no_event: } static EFI_STATUS -receive_http_response(EFI_HTTP_PROTOCOL *http, VOID **buffer, UINTN *buf_size) +receive_http_response(EFI_HTTP_PROTOCOL *http, VOID **buffer, UINT64 *buf_size) { EFI_HTTP_TOKEN rx_token; EFI_HTTP_MESSAGE rx_message; @@ -645,7 +645,7 @@ no_event: static EFI_STATUS http_fetch (EFI_HANDLE image, EFI_HANDLE device, CHAR8 *hostname, CHAR8 *uri, BOOLEAN is_ip6, - VOID **buffer, UINTN *buf_size) + VOID **buffer, UINT64 *buf_size) { EFI_GUID http_binding_guid = EFI_HTTP_SERVICE_BINDING_PROTOCOL_GUID; EFI_GUID http_protocol_guid = EFI_HTTP_PROTOCOL_GUID; |
