diff options
author | Daniel <kingdread@gmx.de> | 2020-06-07 02:21:20 +0200 |
---|---|---|
committer | Daniel <kingdread@gmx.de> | 2020-06-07 02:21:20 +0200 |
commit | 14c46b853f3c19723ed174c8017f20cbe95287e1 (patch) | |
tree | 86399535ef38871d6c2061e9fc54e961a567314a /src/main.rs | |
parent | d12aec96e755306f53d7f9b162a95cb6144cab02 (diff) | |
download | raidgrep-14c46b853f3c19723ed174c8017f20cbe95287e1.tar.gz raidgrep-14c46b853f3c19723ed174c8017f20cbe95287e1.tar.bz2 raidgrep-14c46b853f3c19723ed174c8017f20cbe95287e1.zip |
fix formatting
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index d048cb0..2b2aeb7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -423,7 +423,7 @@ fn grep(opt: &Opt, filter: &dyn LogFilter) -> Result<bool> { Ok(Some(result)) => { found_something.store(true, Ordering::Relaxed); pipeline_ref.push_item(result); - }, + } Err(err) => { debug!("Runtime error while scanning {:?}: {}", entry.path(), err); } |