mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
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
1 changed files with 1 additions and 1 deletions
|
|
@ -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…
Reference in a new issue