summaryrefslogtreecommitdiffhomepage
path: root/tunnel-obfuscation
diff options
context:
space:
mode:
authorLinus Färnstrand <faern@faern.net>2023-01-30 13:09:49 +0100
committerLinus Färnstrand <faern@faern.net>2023-01-30 13:10:30 +0100
commit6cf51c556ba0e18d469d54f2da5bd6d96d25b570 (patch)
treef5a4aa8bc7c5a148fcc71357dfe1ad4a721d79d4 /tunnel-obfuscation
parent89b43426f6da22101aa52dc661a3a9dbcaac1dd8 (diff)
downloadmullvadvpn-6cf51c556ba0e18d469d54f2da5bd6d96d25b570.tar.xz
mullvadvpn-6cf51c556ba0e18d469d54f2da5bd6d96d25b570.zip
Run `cargo clippy --fix` with the new Rust 1.67 preferred format
Diffstat (limited to 'tunnel-obfuscation')
-rw-r--r--tunnel-obfuscation/src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tunnel-obfuscation/src/main.rs b/tunnel-obfuscation/src/main.rs
index cdc1046601..50235ae7e8 100644
--- a/tunnel-obfuscation/src/main.rs
+++ b/tunnel-obfuscation/src/main.rs
@@ -12,7 +12,7 @@ async fn main() {
println!("endpoint() returns {:?}", obfuscator.endpoint());
if let Err(err) = obfuscator.run().await {
- println!("obfuscator.run() failed: {:?}", err);
+ println!("obfuscator.run() failed: {err:?}");
}
}