Remove incorrect mutability
parent
35e8a17249
commit
e2da3e896a
|
@ -224,7 +224,7 @@ fn main() {
|
||||||
let ft = metadata.file_type();
|
let ft = metadata.file_type();
|
||||||
|
|
||||||
if ft.is_file() {
|
if ft.is_file() {
|
||||||
let mut a = FileToProcess {
|
let a = FileToProcess {
|
||||||
name: format!("{}",
|
name: format!("{}",
|
||||||
entry.path().display()),
|
entry.path().display()),
|
||||||
hash: vec![],
|
hash: vec![],
|
||||||
|
|
Loading…
Reference in New Issue