File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -349,15 +349,15 @@ fn unpack_without_first_dir<'a, R: Read>(
349
349
/// has been fully dispatched.
350
350
fn flush_ios < ' a , R : std:: io:: Read , P : AsRef < Path > > (
351
351
io_executor : & mut dyn Executor ,
352
- mut directories : & mut HashMap < PathBuf , DirStatus > ,
352
+ directories : & mut HashMap < PathBuf , DirStatus > ,
353
353
mut sender_entry : Option < & mut SenderEntry < ' a , ' _ , R > > ,
354
354
full_path : P ,
355
355
) -> Result < bool > {
356
356
let mut result = sender_entry. is_none ( ) ;
357
357
for mut op in io_executor. completed ( ) . collect :: < Vec < _ > > ( ) {
358
358
// TODO capture metrics
359
359
filter_result ( & mut op) ?;
360
- trigger_children ( & * io_executor, & mut directories, op) ?;
360
+ trigger_children ( & * io_executor, directories, op) ?;
361
361
}
362
362
// Maybe stream a file incrementally
363
363
if let Some ( sender) = sender_entry. as_mut ( ) {
You can’t perform that action at this time.
0 commit comments