Skip to content

Commit

Permalink
pull main
Browse files Browse the repository at this point in the history
  • Loading branch information
Phil Cummins committed Dec 3, 2024
1 parent b1a8ca5 commit 1c13b0e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/link.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use std::io::Cursor;

use anyhow::{anyhow, Result};
use anyhow::Result;

use crate::Library;

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

return linker.encode().map_err(|e| anyhow!(e));
return linker.encode().map_err(|e| anyhow::anyhow!(e));
}

0 comments on commit 1c13b0e

Please sign in to comment.