Refine code to remove type converting warning.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@10982 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
ydong10 2010-10-26 07:52:31 +00:00
parent f7a14a9b99
commit c52acd89e8
1 changed files with 1 additions and 1 deletions

View File

@ -513,7 +513,7 @@ CpuRegisterInterruptHandler (
return EFI_ALREADY_STARTED;
}
SetInterruptDescriptorTableHandlerAddress (InterruptType, NULL);
SetInterruptDescriptorTableHandlerAddress ((UINTN)InterruptType, NULL);
ExternalVectorTable[InterruptType] = InterruptHandler;
return EFI_SUCCESS;
}