Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
Raphaël Rigo committed Aug 13, 2023
1 parent 2642a14 commit c4a417e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/findsoapp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ impl Applet for FindSoApplet {

// Load dependencies from first file
if self.is_ref {
let f_data: Vec<u8> =
fs::read(sofiles[0].as_str()).with_context(|| format!("Could not read file \"{}\"", sofiles[0]))?;
let f_data: Vec<u8> = fs::read(sofiles[0].as_str())
.with_context(|| format!("Could not read file \"{}\"", sofiles[0]))?;
let elf_ref = elf::Elf::parse(f_data.as_slice())
.with_context(|| "Could not parse reference as ELF")?;
sofiles.extend(
Expand Down

0 comments on commit c4a417e

Please sign in to comment.