Skip to content

Commit cd358fb

Browse files
committed
Fix formatting with cargo fmt
1 parent 4295168 commit cd358fb

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/main.rs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@ async fn main() -> Result<(), BoxedError> {
5757
}
5858

5959
if matches.opt_present("V") {
60-
println!("tcpproxy {} - {}", env!("CARGO_PKG_VERSION"), env!("CARGO_PKG_REPOSITORY"));
60+
println!(
61+
"tcpproxy {} - {}",
62+
env!("CARGO_PKG_VERSION"),
63+
env!("CARGO_PKG_REPOSITORY")
64+
);
6165
std::process::exit(0);
6266
}
6367

0 commit comments

Comments
 (0)