Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Cummins committed Dec 4, 2024
1 parent 3ac08dd commit 78ec52a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/link.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ pub fn link_libraries(libraries: &[Library]) -> Result<Vec<u8>> {
))))?,
)?;

return linker.encode().map_err(|e| anyhow::anyhow!(e));
linker.encode().map_err(|e| anyhow::anyhow!(e))
}
2 changes: 1 addition & 1 deletion src/prelink.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
use std::{
collections::{HashMap, HashSet},
fs::{self},
io::{self, Cursor},
io::Cursor,
ops::Deref,
path::{Path, PathBuf},
};
Expand Down

0 comments on commit 78ec52a

Please sign in to comment.