summaryrefslogtreecommitdiff
path: root/EmulatorPkg
diff options
context:
space:
mode:
authorandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>2011-07-15 19:01:16 +0000
committerandrewfish <andrewfish@6f19259b-4bc3-4df7-8a09-765794883524>2011-07-15 19:01:16 +0000
commitf2a74dae14fd1e414dbb607f3b5654f2cce332ee (patch)
tree4da0b44bef76185ab71af961036faac1bcf0c637 /EmulatorPkg
parentd042796c1ab5d97dba6dd21a78938b8b67d6f13f (diff)
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')
-rw-r--r--EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.c b/EmulatorPkg/EmuBusDriverDxe/EmuBusDriverDxe.c
index 623544508..401141be6 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
);