Fix missing counting

This commit is contained in:
Matthias Beyer 2018-04-13 13:27:08 +02:00
parent c27dc79afe
commit 02985e5a0d

View file

@ -120,6 +120,7 @@ fn show(rt: &Runtime, e: &Entry, re: &Regex, opts: &Options, count: &mut usize)
}
let _ = writeln!(rt.stdout(), "").to_exit_code().unwrap_or_exit();
*count += 1;
}
}