Skip to content

Commit 3368381

Browse files
committed
Remove mut
1 parent 2125647 commit 3368381

File tree

1 file changed

+1
-1
lines changed
  • src/bootstrap/src/core/build_steps

1 file changed

+1
-1
lines changed

src/bootstrap/src/core/build_steps/gcc.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ impl GccOutput {
4141
}
4242

4343
if let Some(ref path) = self.libgccjit {
44-
let mut target_filename = path.file_name().unwrap().to_str().unwrap().to_string();
44+
let target_filename = path.file_name().unwrap().to_str().unwrap().to_string();
4545

4646
// If we build libgccjit ourselves, then `self.libgccjit` can actually be a symlink.
4747
// In that case, we have to resolve it first, otherwise we'd create a symlink to a symlink,

0 commit comments

Comments
 (0)