diff options
| author | Linus Färnstrand <faern@faern.net> | 2023-01-30 13:09:49 +0100 |
|---|---|---|
| committer | Linus Färnstrand <faern@faern.net> | 2023-01-30 13:10:30 +0100 |
| commit | 6cf51c556ba0e18d469d54f2da5bd6d96d25b570 (patch) | |
| tree | f5a4aa8bc7c5a148fcc71357dfe1ad4a721d79d4 /tunnel-obfuscation | |
| parent | 89b43426f6da22101aa52dc661a3a9dbcaac1dd8 (diff) | |
| download | mullvadvpn-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.rs | 2 |
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:?}"); } } |
