From aacd73b871a0d7faec37eb33628b0e8d46d95a20 Mon Sep 17 00:00:00 2001 From: Warner Losh Date: Fri, 3 May 2019 21:06:34 +0000 Subject: [PATCH] Remove stray '*' We're storing an EFI_HANDLE, not an pointer to a handle. Since EFI_HANDLE is a void * anyway, this has little practical effect since the conversion to / from void * and void ** is silent. --- stand/efi/boot1/boot_module.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stand/efi/boot1/boot_module.h b/stand/efi/boot1/boot_module.h index 43d52b2e8ad..e196c194611 100644 --- a/stand/efi/boot1/boot_module.h +++ b/stand/efi/boot1/boot_module.h @@ -48,7 +48,7 @@ typedef struct dev_info { EFI_BLOCK_IO *dev; EFI_DEVICE_PATH *devpath; - EFI_HANDLE *devhandle; + EFI_HANDLE devhandle; void *devdata; uint64_t partoff; int preferred;