From 2f16a8534ca96120f3aabc8dd65f74f9eedc2382 Mon Sep 17 00:00:00 2001 From: belliash Date: Sun, 6 Nov 2022 20:03:49 +0100 Subject: [PATCH] Code cleanup --- xtldr/modules/pecoff/pecoff.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/xtldr/modules/pecoff/pecoff.c b/xtldr/modules/pecoff/pecoff.c index a423967..580b7c1 100644 --- a/xtldr/modules/pecoff/pecoff.c +++ b/xtldr/modules/pecoff/pecoff.c @@ -173,8 +173,6 @@ EFI_STATUS PeLoadImage(IN PEFI_FILE_HANDLE FileHandle, /* Load each section into memory */ for(Index = 0; Index < PeHeader->FileHeader.NumberOfSections; Index++) { - EfiXtLdrProtocol->EfiPrint(L"TEST: %lx\n", SectionHeader[Index].Misc.VirtualSize); - /* Check section raw data size and section virtual size */ if(SectionHeader[Index].SizeOfRawData < SectionHeader[Index].Misc.VirtualSize) {