Skip to content

Commit

Permalink
cargo clippy --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyTornetta committed Aug 24, 2024
1 parent 5dcf92e commit 5e34928
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosmos_server/src/persistence/saving.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ fn done_saving(

let serialized: Vec<u8> = cosmos_encoder::serialize(&sd);

if let Err(e) = write_file(&save_file_identifier, &serialized) {
if let Err(e) = write_file(save_file_identifier, &serialized) {
error!("Unable to save {entity:?}\n{e}");
}

Expand Down

0 comments on commit 5e34928

Please sign in to comment.