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
This commit is contained in:
andrewfish 2011-07-15 19:01:16 +00:00
parent d042796c1a
commit f2a74dae14
1 changed files with 1 additions and 1 deletions

View File

@ -404,7 +404,7 @@ EmuBusDriverBindingStop (
Status = gBS->UninstallMultipleProtocolInterfaces (
EmuDevice->Handle,
&gEfiDevicePathProtocolGuid, EmuDevice->DevicePath,
&gEmuIoThunkProtocolGuid, EmuDevice->EmuIoThunk,
&gEmuIoThunkProtocolGuid, &EmuDevice->EmuIoThunk,
NULL
);