diff options
| author | Stefan Kreutz <mail@skreutz.com> | 2023-01-26 17:56:43 +0100 | 
|---|---|---|
| committer | Stefan Kreutz <mail@skreutz.com> | 2023-01-26 17:57:24 +0100 | 
| commit | a29cb44434224ea02e4af7537f26a02ec2ce65b8 (patch) | |
| tree | 6ebe2ab253dc1e9a23ff2012da13377e84e10bbc /wpa-psk-cli/src/bin | |
| parent | 3b7539c82a9510771b0ef377679afe739555af6f (diff) | |
| download | wpa-psk-a29cb44434224ea02e4af7537f26a02ec2ce65b8.tar | |
Inline format macro arguments
Fixes new warning clippy::uninlined-format-args.
Diffstat (limited to 'wpa-psk-cli/src/bin')
| -rw-r--r-- | wpa-psk-cli/src/bin/wpa-psk.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/wpa-psk-cli/src/bin/wpa-psk.rs b/wpa-psk-cli/src/bin/wpa-psk.rs index 22404eb..ddcec0d 100644 --- a/wpa-psk-cli/src/bin/wpa-psk.rs +++ b/wpa-psk-cli/src/bin/wpa-psk.rs @@ -27,7 +27,7 @@ fn main() {      exit(match run() {          Ok(_) => 0,          Err(err) => { -            eprintln!("{}", err); +            eprintln!("{err}");              1          }      })  |