EmbeddedPkg/PrePiLib: Correct function prototype

Signed-off-by: Savva Mitrofanov <savvamtr@gmail.com>
This commit is contained in:
Savva Mitrofanov 2023-04-02 21:08:09 +06:00
parent 950de0d6fe
commit b877d75f50
No known key found for this signature in database
GPG Key ID: 774924031750BF64
2 changed files with 2 additions and 2 deletions

View File

@ -655,7 +655,7 @@ LoadUefiImage (
IN VOID *UefiImage,
IN UINT32 UefiImageSize,
OUT EFI_PHYSICAL_ADDRESS *ImageAddress,
OUT UINT64 *ImageSize,
OUT UINT32 *ImageSize,
OUT EFI_PHYSICAL_ADDRESS *EntryPoint
);

View File

@ -45,7 +45,7 @@ LoadUefiImage (
ImageSize = UefiImageGetImageSize (&ImageContext);
BufferPages = EFI_SIZE_TO_PAGES (ImageSize);
BufferSize = EFI_PAGES_TO_SIZE (BufferSize);
BufferSize = EFI_PAGES_TO_SIZE (BufferPages);
BufferAlignment = UefiImageGetSegmentAlignment (&ImageContext);
//