Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
gamozolabs committed Nov 11, 2021
1 parent da3936f commit 30c77ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -394,8 +394,8 @@ r#"Usage: elfloader [--binary] [--base=<addr>] <input ELF> <output>
}

// Create the output file
let mut output = BufWriter::new(File::create(&args[2]).map_err(Error::CreateFelf)?);

let mut output = BufWriter::new(File::create(&args[2])
.map_err(Error::CreateFelf)?);
write_file(&args[1], base, &mut output, binary)?;

Ok(())
Expand Down

0 comments on commit 30c77ca

Please sign in to comment.