Skip to content

Commit 1c13b0e

Browse files
author
Phil Cummins
committed
pull main
1 parent b1a8ca5 commit 1c13b0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/link.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use std::io::Cursor;
22

3-
use anyhow::{anyhow, Result};
3+
use anyhow::Result;
44

55
use crate::Library;
66

@@ -26,5 +26,5 @@ pub fn link_libraries(libraries: &[Library]) -> Result<Vec<u8>> {
2626
))))?,
2727
)?;
2828

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

0 commit comments

Comments
 (0)