Skip to content

Commit

Permalink
remove warning when processing PE32/TE files
Browse files Browse the repository at this point in the history
  • Loading branch information
yeggor committed Nov 5, 2024
1 parent 0d84855 commit c38105f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions efiXloader/pe_manager.cc
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ void efiloader::PeManager::process(linput_t *li, std::basic_string<char> fname,
msg("[efiXloader] PE detected\n");
pe.process();
} else if (pe.is_p32()) {
msg("[efiXloader] this loader is not ready for PE32\n");
msg("[efiXloader] 32-bit modules will not be loaded\n");
} else {
warning("[efiXloader] not PE\n");
msg("[efiXloader] modules in the TE format will not be loaded\n");
}
}

0 comments on commit c38105f

Please sign in to comment.