ArmPkg: Fixed unsigned type to be architecture independent
Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Olivier Martin <olivier.martin@arm.com> git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@14181 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
@@ -189,7 +189,7 @@ LinuxLoaderConfig (
|
||||
Print (L"[%d] Update Linux Boot Entry\n",LINUX_LOADER_UPDATE);
|
||||
|
||||
Print (L"Option: ");
|
||||
Status = GetHIInputInteger (&Choice);
|
||||
Status = GetHIInputInteger ((UINTN*)&Choice);
|
||||
if (Status == EFI_INVALID_PARAMETER) {
|
||||
Print (L"\n");
|
||||
return Status;
|
||||
@@ -268,7 +268,7 @@ LinuxLoaderConfig (
|
||||
|
||||
do {
|
||||
Print (L"Update Boot Entry: ");
|
||||
Status = GetHIInputInteger (&Choice);
|
||||
Status = GetHIInputInteger ((UINTN*)&Choice);
|
||||
if (Status == EFI_INVALID_PARAMETER) {
|
||||
Print (L"\n");
|
||||
return Status;
|
||||
|
Reference in New Issue
Block a user