Skip to content

Commit 1529b95

Browse files
committed
style: Inline fmt args
1 parent 88f7f06 commit 1529b95

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/exit.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ pub fn report(result: ExitResult) -> crate::Code {
7979
if let Some(msg) = err.msg {
8080
// At this point, we might be exiting due to a broken pipe, just do our best and
8181
// move on.
82-
let _ = writeln!(std::io::stderr(), "{}", msg);
82+
let _ = writeln!(std::io::stderr(), "{msg}");
8383
}
8484
err.code
8585
}

0 commit comments

Comments
 (0)