Skip to content

Commit

Permalink
clippy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Twinklebear committed Aug 19, 2024
1 parent c7dd763 commit a98497a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compile/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -420,7 +420,7 @@ impl Config {
.arg("crus")
.arg(format!("lib{lib}.a"))
.args(objects)
.current_dir(&self.get_out_dir())
.current_dir(self.get_out_dir())
.status()
.unwrap()
}
Expand All @@ -434,7 +434,7 @@ impl Config {
lib_cmd
.arg(format!("/OUT:{lib}.lib"))
.args(objects)
.current_dir(&self.get_out_dir())
.current_dir(self.get_out_dir())
.status()
.unwrap()
}
Expand Down

0 comments on commit a98497a

Please sign in to comment.