Skip to content

Commit 161d531

Browse files
committed
Small fix.
1 parent fbe57b5 commit 161d531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/symbolizer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ impl Symbolizer {
192192

193193
// Get the base address from our file_base_addresses mapping
194194
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}...");
195+
eprintln!("Loading library {path} at file base address 0x{base_address:x}...");
196196

197197
// Try to read the library file
198198
let file_data = match fs::read(path) {

0 commit comments

Comments
 (0)