Skip to content

Commit

Permalink
Fixed some rustfmt complaints that weren't happening before. (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
matux authored Feb 9, 2024
1 parent b3b613c commit 8dad46f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions atorsl/src/symbolicator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ pub fn atos_dwarf(dwarf: &Dwarf, addr: Addr, include_inlined: bool) -> Result<Ve

let leaf = loop {
let Some((step, child)) = entries.next_dfs()? else {
break parent
break parent;
};

depth += step;
Expand Down Expand Up @@ -266,7 +266,7 @@ impl DwarfExt for Dwarf<'_> {
file: path.join("<compiler-generated>"),
line: 0,
col: 0,
})
});
};

let is_artificial = entry.attr_value(DW_AT_artificial) == Ok(Some(AttrValue::Flag(true)));
Expand Down

0 comments on commit 8dad46f

Please sign in to comment.