svn commit: r347059 - head/stand/efi/boot1
Warner Losh
imp at FreeBSD.org
Fri May 3 21:06:35 UTC 2019
Author: imp
Date: Fri May 3 21:06:34 2019
New Revision: 347059
URL: https://svnweb.freebsd.org/changeset/base/347059
Log:
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.
Modified:
head/stand/efi/boot1/boot_module.h
Modified: head/stand/efi/boot1/boot_module.h
==============================================================================
--- head/stand/efi/boot1/boot_module.h Fri May 3 20:38:43 2019 (r347058)
+++ head/stand/efi/boot1/boot_module.h Fri May 3 21:06:34 2019 (r347059)
@@ -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;
More information about the svn-src-all
mailing list