Skip to content

Commit 0a8be8c

Browse files
committed
[Rust] Misc formatting
1 parent d747c55 commit 0a8be8c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

plugins/dwarf/dwarf_import/src/dwarfdebuginfo.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -722,7 +722,9 @@ impl DebugInfoBuilder {
722722
// DWARF doesn't contain GOT info, so remove any entries there...they will be wrong (relying on Binja's mechanisms for the GOT is good )
723723
// Also ignore externs since we don't want to try and create functions not backed by the file
724724
let symbol_type = symbol.sym_type();
725-
if symbol_type != SymbolType::ImportAddress && symbol_type != SymbolType::External {
725+
if symbol_type != SymbolType::ImportAddress
726+
&& symbol_type != SymbolType::External
727+
{
726728
func.address = Some(symbol.address() - bv.start());
727729
}
728730
}

0 commit comments

Comments
 (0)