Skip to content

Commit b11a5ee

Browse files
committed
fix build error from renaming field
1 parent a0e96c5 commit b11a5ee

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

crates/bin/output.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,8 +192,8 @@ pub fn print_plain(output: &mut impl Write, pdb_info: &ParsedPdb) -> io::Result<
192192

193193
for procedure in &pdb_info.procedures {
194194
write!(output, "\t")?;
195-
if let Some(offset) = procedure.offset {
196-
write!(output, "0x{:08X} ", offset)?;
195+
if let Some(address) = procedure.address {
196+
write!(output, "0x{:08X} ", address)?;
197197
} else {
198198
write!(output, "{:<10} ", "")?;
199199
}

0 commit comments

Comments
 (0)