Skip to content

Commit f4492c9

Browse files
authored
Fix Clippy warning for unused format! in 1.81 (#343)
1 parent a32915b commit f4492c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -847,7 +847,7 @@ async fn check_import_keys(
847847
let encrypted = match encrypt_room_key_export(&keys, &passphrase, 500000) {
848848
Ok(encrypted) => encrypted,
849849
Err(e) => {
850-
format!("* Failed to encrypt room keys during export: {e}");
850+
println!("* Failed to encrypt room keys during export: {e}");
851851
process::exit(2);
852852
},
853853
};

0 commit comments

Comments
 (0)