From aea69a33b9fb292ebee4627761519798c0fcc35c Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Mon, 4 Dec 2023 17:33:33 +0100 Subject: [PATCH] Correct typo --- xtldr2/includes/bootman.h | 2 +- xtldr2/memory.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/xtldr2/includes/bootman.h b/xtldr2/includes/bootman.h index 5fd9f9b..961718f 100644 --- a/xtldr2/includes/bootman.h +++ b/xtldr2/includes/bootman.h @@ -54,7 +54,7 @@ BlDebugPrint(IN PUINT16 Format, XTCDECL EFI_STATUS -BlMemoreFreePages(IN UINT64 Pages, +BlMemoryFreePages(IN UINT64 Pages, IN EFI_PHYSICAL_ADDRESS Memory); XTCDECL diff --git a/xtldr2/memory.c b/xtldr2/memory.c index a91a99e..19e9397 100644 --- a/xtldr2/memory.c +++ b/xtldr2/memory.c @@ -67,7 +67,7 @@ BlMemoryAllocatePool(IN UINT_PTR Size, */ XTCDECL EFI_STATUS -BlMemoreFreePages(IN UINT64 Pages, +BlMemoryFreePages(IN UINT64 Pages, IN EFI_PHYSICAL_ADDRESS Memory) { return EfiSystemTable->BootServices->FreePages(Memory, Pages);