diff options
| author | Stefan Kreutz <mail@skreutz.com> | 2026-08-07 19:56:00 +0200 |
|---|---|---|
| committer | Stefan Kreutz <mail@skreutz.com> | 2026-08-07 19:56:00 +0200 |
| commit | 62293ccb11af519d8c1786f0a46ff8f8dab86f86 (patch) | |
| tree | 4edb4e4e961fa8c0b46500449b33915f4854ce56 /src | |
| parent | a2581314e2164b92247397130c2f47bf17e97d16 (diff) | |
| download | brck-62293ccb11af519d8c1786f0a46ff8f8dab86f86.tar.gz | |
Update Nix flake inputs
Thereby fix new linter warnings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/fs.rs | 2 | ||||
| -rw-r--r-- | src/main.rs | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -41,7 +41,7 @@ impl Drop for TmpFile { if let Err(err) = remove_file_if_exists(&self.path) { eprintln!( "Failed to remove temporary file {}: {}", - &self.path.display(), + self.path.display(), err ); } diff --git a/src/main.rs b/src/main.rs index 9c874ed..a3b9ce4 100644 --- a/src/main.rs +++ b/src/main.rs @@ -171,7 +171,7 @@ fn run() -> Result<(), anyhow::Error> { item.map_err(|err| { anyhow::Error::new(err).context(format!( "Failed to decode record from database {}", - &db_path.display() + db_path.display() )) }) }); |