Skip to content
/ rust Public
forked from rust-lang/rust

Commit 91644dd

Browse files
author
The Miri Cronjob Bot
committed
fmt
1 parent e720147 commit 91644dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/tools/miri/src/bin/miri.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,8 @@ fn main() {
341341
// (`install_ice_hook` might change `RUST_BACKTRACE`.)
342342
let env_snapshot = env::vars_os().collect::<Vec<_>>();
343343

344-
let args = rustc_driver::args::raw_args(&early_dcx).unwrap_or_else(|_| std::process::exit(rustc_driver::EXIT_FAILURE));
344+
let args = rustc_driver::args::raw_args(&early_dcx)
345+
.unwrap_or_else(|_| std::process::exit(rustc_driver::EXIT_FAILURE));
345346

346347
// If the environment asks us to actually be rustc, then do that.
347348
if let Some(crate_kind) = env::var_os("MIRI_BE_RUSTC") {

0 commit comments

Comments
 (0)