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.
This commit is contained in:
parent
5c95417dad
commit
aacd73b871
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user