diff options
author | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-07-15 19:01:16 +0000 |
---|---|---|
committer | andrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524> | 2011-07-15 19:01:16 +0000 |
commit | f2a74dae14fd1e414dbb607f3b5654f2cce332ee (patch) | |
tree | 4da0b44bef76185ab71af961036faac1bcf0c637 /EmulatorPkg/EmuBusDriverDxe | |
parent | d042796c1ab5d97dba6dd21a78938b8b67d6f13f (diff) | |
download | edk2-platforms-f2a74dae14fd1e414dbb607f3b5654f2cce332ee.tar.xz |
EmulatorPkg: Fix bug with missing &. Causes a link failure on TOT clang.
signed-off-by: andrewfish
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@12021 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'EmulatorPkg/EmuBusDriverDxe')
-rw-r--r-- | EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.c b/EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.c index 623544508c..401141be69 100644 --- a/EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.c +++ b/EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.c @@ -404,7 +404,7 @@ EmuBusDriverBindingStop ( Status = gBS->UninstallMultipleProtocolInterfaces (
EmuDevice->Handle,
&gEfiDevicePathProtocolGuid, EmuDevice->DevicePath,
- &gEmuIoThunkProtocolGuid, EmuDevice->EmuIoThunk,
+ &gEmuIoThunkProtocolGuid, &EmuDevice->EmuIoThunk,
NULL
);
|