Build: REmoved compiler warning

This commit is contained in:
Paul Beckingham 2016-09-09 22:33:15 -04:00
parent 5dc3469954
commit 28e1dffec5
3 changed files with 3 additions and 4 deletions

View file

@ -41,7 +41,6 @@
void autoFill (
const Rules& rules,
Database& database,
const Interval& filter,
Interval& interval)
{
// An empty filter allows scanning beyond interval.range.
@ -200,7 +199,7 @@ void validate (
// All validation performed here.
if (findHint (cli, ":fill"))
autoFill (rules, database, filter, interval);
autoFill (rules, database, interval);
autoAdjust (findHint (cli, ":adjust"), rules, database, interval);