Skip to content

Commit

Permalink
Update layout & comments
Browse files Browse the repository at this point in the history
  • Loading branch information
romainthomas committed Aug 18, 2024
1 parent b267a99 commit ce3ff3f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions api/rust/cargo/lief/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,17 @@ pub mod macho;

/// Module for the PE format
pub mod pe;

/// Module for PDB debug info
pub mod pdb;

/// Module for DWARF debug info
pub mod dwarf;

/// Module for Objective-C metadata
pub mod objc;
pub mod debug_info;
pub mod range;
mod range;

/// Module for LIEF's error
pub mod error;
Expand All @@ -82,7 +88,7 @@ pub mod logging;
mod binary;
mod common;

pub mod debug_location;
mod debug_location;

#[doc(inline)]
pub use binary::Binary;
Expand Down
2 changes: 1 addition & 1 deletion src/PE/signature/SignatureParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ SignatureParser::parse_attributes(BinaryStream& stream) {

if (value_stream.pos() < value_stream.size()) {
const uint32_t delta = value_stream.size() - value_stream.pos();
LIEF_WARN("{}: {} bytes left", oid_str, delta);
LIEF_INFO("{}: {} bytes left", oid_str, delta);
}
}
stream.increment_pos(value_set_size);
Expand Down

0 comments on commit ce3ff3f

Please sign in to comment.