Fix compiler warning for 32bit build, use proper data types
All checks were successful
ci/woodpecker/push/build Pipeline was successful

This commit is contained in:
Rafal Kupiec 2022-11-14 17:58:53 +01:00
parent e37e5b97af
commit fd4e9ffe63
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4

View File

@ -80,9 +80,10 @@ PeLoadImage(IN PEFI_FILE_HANDLE FileHandle,
PPECOFF_IMAGE_CONTEXT ImageData;
EFI_PHYSICAL_ADDRESS Address;
PEFI_FILE_INFO FileInfo;
SIZE_T Pages, ReadSize;
UINT_PTR ReadSize;
EFI_STATUS Status;
UINT SectionSize;
SIZE_T Pages;
PUCHAR Data;
UINT Index;