From e74e9d393bdf687002ccdbd706a929b4bbf2920e Mon Sep 17 00:00:00 2001 From: Daniel Date: Mon, 4 May 2020 12:31:18 +0200 Subject: include missing semicolon Rust doesn't necessarily need this, but it's good formatting to include it anyway. --- src/filters/log.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/filters') 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 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 -- cgit v1.2.3