mirror of
https://github.com/youwen5/iamb.git
synced 2025-06-19 21:29:52 -07:00
Fix Clippy warning for unused format!
in 1.81 (#343)
This commit is contained in:
parent
a32915b7e9
commit
f4492c9f77
1 changed files with 1 additions and 1 deletions
|
@ -847,7 +847,7 @@ async fn check_import_keys(
|
||||||
let encrypted = match encrypt_room_key_export(&keys, &passphrase, 500000) {
|
let encrypted = match encrypt_room_key_export(&keys, &passphrase, 500000) {
|
||||||
Ok(encrypted) => encrypted,
|
Ok(encrypted) => encrypted,
|
||||||
Err(e) => {
|
Err(e) => {
|
||||||
format!("* Failed to encrypt room keys during export: {e}");
|
println!("* Failed to encrypt room keys during export: {e}");
|
||||||
process::exit(2);
|
process::exit(2);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue