Skip to content

Commit 78ec52a

Browse files
author
Phil Cummins
committed
formatting
1 parent 3ac08dd commit 78ec52a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/link.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ pub fn link_libraries(libraries: &[Library]) -> Result<Vec<u8>> {
2626
))))?,
2727
)?;
2828

29-
return linker.encode().map_err(|e| anyhow::anyhow!(e));
29+
linker.encode().map_err(|e| anyhow::anyhow!(e))
3030
}

src/prelink.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
use std::{
44
collections::{HashMap, HashSet},
55
fs::{self},
6-
io::{self, Cursor},
6+
io::Cursor,
77
ops::Deref,
88
path::{Path, PathBuf},
99
};

0 commit comments

Comments
 (0)