Skip to content

Commit

Permalink
fix: do the clippy again
Browse files Browse the repository at this point in the history
  • Loading branch information
jost-s committed Dec 15, 2023
1 parent d8e21ac commit 807ffd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/lair_keystore/src/store_sqlite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ impl SqlPool {
// only set WAL mode on the first write connection
// it's a slow operation, and not needed on subsequent connections.
write_con
.pragma_update(None, "journal_mode", &"WAL".to_string())
.pragma_update(None, "journal_mode", "WAL".to_string())
.map_err(one_err::OneErr::new)?;

// initialize tables if they don't already exist
Expand Down

0 comments on commit 807ffd9

Please sign in to comment.