variable did not need to be mut

This commit is contained in:
Folkert 2021-12-05 15:11:52 +01:00
parent 4af9539ce6
commit 009d1c8163

View File

@ -167,7 +167,7 @@ fn main() -> io::Result<()> {
fn read_all_roc_files(
dir: &OsString,
mut roc_file_paths: &mut Vec<OsString>,
roc_file_paths: &mut Vec<OsString>,
) -> Result<(), std::io::Error> {
let entries = fs::read_dir(dir)?;