From baaa729076c93d046036aad99424290665435483 Mon Sep 17 00:00:00 2001 From: Rafal Kupiec Date: Sat, 2 Mar 2024 22:27:32 +0100 Subject: [PATCH] Correct typo in a comment --- xtldr/volume.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xtldr/volume.c b/xtldr/volume.c index 81ecb678..3e23c550 100644 --- a/xtldr/volume.c +++ b/xtldr/volume.c @@ -615,7 +615,7 @@ BlReadFile(IN PEFI_FILE_HANDLE DirHandle, return Status; } - /* Calculate number of bytes to read and zero memory*/ + /* Calculate number of bytes to read and zero memory */ ReadSize = Pages * EFI_PAGE_SIZE; *FileData = (PCHAR)(UINT_PTR)Address; RtlZeroMemory(*FileData, ReadSize);