Skip to content

Commit

Permalink
Added missing comma (causing ci lint to fail)
Browse files Browse the repository at this point in the history
  • Loading branch information
coolGi69 committed Jun 19, 2024
1 parent e635da4 commit cd228e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linux/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ impl LinuxPackageReadout {
let connection = sqlite::Connection::open_with_flags(
// The nix store is immutable, so we need to inform sqlite about it
"file:".to_owned() + db + "?immutable=1",
sqlite::OpenFlags::new().with_read_only().with_uri()
sqlite::OpenFlags::new().with_read_only().with_uri(),
);

if let Ok(con) = connection {
Expand Down

0 comments on commit cd228e6

Please sign in to comment.