Skip to content

Commit

Permalink
Fix verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Feb 2, 2025
1 parent b086796 commit e2ef1ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PE/Parser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ Parser::parse_resource_node(const details::pe_resource_directory_table& director
if ((id & 0x80000000) != 0u) {
uint32_t offset = id & (~ 0x80000000);
uint32_t string_offset = base_offset + offset;
LIEF_ERR("base_offset=0x{:04x}, string_offset=0x{:04x}",
LIEF_DEBUG("base_offset=0x{:04x}, string_offset=0x{:04x}",
base_offset, string_offset);

auto res_length = stream_->peek<uint16_t>(string_offset);
Expand Down

0 comments on commit e2ef1ea

Please sign in to comment.