summaryrefslogtreecommitdiffstats
path: root/src/interface/efi/efi_download.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/interface/efi/efi_download.c')
-rw-r--r--src/interface/efi/efi_download.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interface/efi/efi_download.c b/src/interface/efi/efi_download.c
index 522276ace..1218852e2 100644
--- a/src/interface/efi/efi_download.c
+++ b/src/interface/efi/efi_download.c
@@ -205,13 +205,13 @@ static IPXE_DOWNLOAD_PROTOCOL ipxe_download_protocol_interface = {
* @v handle EFI handle
* @ret rc Return status code
*/
-int efi_download_install ( EFI_HANDLE *handle ) {
+int efi_download_install ( EFI_HANDLE handle ) {
EFI_BOOT_SERVICES *bs = efi_systab->BootServices;
EFI_STATUS efirc;
int rc;
efirc = bs->InstallMultipleProtocolInterfaces (
- handle,
+ &handle,
&ipxe_download_protocol_guid,
&ipxe_download_protocol_interface,
NULL );