We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbe57b5 commit 161d531Copy full SHA for 161d531
src/symbolizer.rs
@@ -192,7 +192,7 @@ impl Symbolizer {
192
193
// Get the base address from our file_base_addresses mapping
194
let base_address = self.file_base_addresses.get(path).copied().unwrap_or(0);
195
- eprintln!("Loading library {path} at file base address {base_address:x}...");
+ eprintln!("Loading library {path} at file base address 0x{base_address:x}...");
196
197
// Try to read the library file
198
let file_data = match fs::read(path) {
0 commit comments