Merge pull request #2092 from jugglerchris/remove_unneeded_mut
Fix a "variable does not need to be mutable" warning.
This commit is contained in:
commit
ef68ea177c
@ -333,7 +333,7 @@ where
|
||||
Ok(result) => result,
|
||||
Err(e) => {
|
||||
// Create a new error with path_str to help users see which files failed
|
||||
let mut err_msg = path_str.to_string() + &": ".to_string() + &e.to_string();
|
||||
let err_msg = path_str.to_string() + &": ".to_string() + &e.to_string();
|
||||
return Err(io::Error::new(e.kind(), err_msg));
|
||||
}
|
||||
};
|
||||
|
Loading…
x
Reference in New Issue
Block a user