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:
andrewfish 2011-06-27 15:42:03 +00:00
parent 4ffaadccd3
commit febb227679
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ EMU_THUNK_PPI mSecEmuThunkPpi = {
};
char *gGdbWorkingFileName = NULL;
UINTN mScriptSymbolChangesCount = 0;
unsigned int mScriptSymbolChangesCount = 0;
//
@ -1247,7 +1247,7 @@ SecPeCoffUnloadImageExtraAction (
//
Handle = RemoveHandle (ImageContext);
if (Handle == NULL) {
if (Handle != NULL) {
#ifndef __APPLE__
dlclose (Handle);
#endif