InOsEmuPkg: Fix minor typo and Xcode build breaks. Seems Xcode is more picky about the types you pass into %x.
signed-off-by: andrewfish git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11893 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
4ffaadccd3
commit
febb227679
|
@ -30,7 +30,7 @@ EMU_THUNK_PPI mSecEmuThunkPpi = {
|
||||||
};
|
};
|
||||||
|
|
||||||
char *gGdbWorkingFileName = NULL;
|
char *gGdbWorkingFileName = NULL;
|
||||||
UINTN mScriptSymbolChangesCount = 0;
|
unsigned int mScriptSymbolChangesCount = 0;
|
||||||
|
|
||||||
|
|
||||||
//
|
//
|
||||||
|
@ -1247,7 +1247,7 @@ SecPeCoffUnloadImageExtraAction (
|
||||||
//
|
//
|
||||||
Handle = RemoveHandle (ImageContext);
|
Handle = RemoveHandle (ImageContext);
|
||||||
|
|
||||||
if (Handle == NULL) {
|
if (Handle != NULL) {
|
||||||
#ifndef __APPLE__
|
#ifndef __APPLE__
|
||||||
dlclose (Handle);
|
dlclose (Handle);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue