diff options
| author | Daniel <kingdread@gmx.de> | 2020-05-04 12:31:18 +0200 | 
|---|---|---|
| committer | Daniel <kingdread@gmx.de> | 2020-05-04 12:31:18 +0200 | 
| commit | e74e9d393bdf687002ccdbd706a929b4bbf2920e (patch) | |
| tree | d9708ffe5ae0f0a42090df7277c595fc74f22ebf /src | |
| parent | 17e27776ea152509e1095bbf80f5af65bc7a7997 (diff) | |
| download | raidgrep-e74e9d393bdf687002ccdbd706a929b4bbf2920e.tar.gz raidgrep-e74e9d393bdf687002ccdbd706a929b4bbf2920e.tar.bz2 raidgrep-e74e9d393bdf687002ccdbd706a929b4bbf2920e.zip | |
include missing semicolon
Rust doesn't necessarily need this, but it's good formatting to include
it anyway.
Diffstat (limited to 'src')
| -rw-r--r-- | src/filters/log.rs | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/filters/log.rs b/src/filters/log.rs index 2f4a6a0..b9843e9 100644 --- a/src/filters/log.rs +++ b/src/filters/log.rs @@ -98,7 +98,7 @@ impl Filter<EarlyLogResult, LogResult> for TimeFilter {      fn filter_early(&self, early_log: &EarlyLogResult) -> Inclusion {          // Ignore the filename heuristic if the user wishes so.          if !self.2 { -            return Inclusion::Unknown +            return Inclusion::Unknown;          }          early_log              .log_file | 
