Skip to content

Commit e751eeb

Browse files
author
hyd-dev
committed
drop(cmd.arg(arg)) -> cmd.arg(arg);
1 parent 34217bd commit e751eeb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cargo-miri/bin.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,9 @@ fn phase_cargo_miri(mut args: env::Args) {
578578
}
579579
target_dir = Some(value.into());
580580
}
581-
Err(arg) => drop(cmd.arg(arg)),
581+
Err(arg) => {
582+
cmd.arg(arg);
583+
}
582584
}
583585
}
584586

0 commit comments

Comments
 (0)