Skip to content

Commit

Permalink
fix: [parser] cargo fmt fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cvandeplas committed Nov 27, 2024
1 parent c9eb4be commit 200ee97
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ pub fn collect_strings(path: &str) -> Result<Vec<UUIDText>, ParserError> {

let entries = paths
.flat_map(|path| {
path.map_err(|err| {
error!("[macos-unifiedlogs] Failed to get directory entry: {err:?}",)
})
path.map_err(
|err| error!("[macos-unifiedlogs] Failed to get directory entry: {err:?}",),
)
.ok()
})
.collect::<Vec<_>>();
Expand Down

0 comments on commit 200ee97

Please sign in to comment.