CLI: increase delay between progress reports from 1s to 10s

This commit is contained in:
Daniel Marjamäki 2010-08-08 09:23:13 +02:00
parent 11ef2c0a06
commit 5d1e85dde1
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ void CppCheckExecutor::reportProgress(const std::string &filename, const char st
// Report progress messages every 10 seconds
const std::time_t time2 = std::time(NULL);
if (time2 >= (time1 + 1))
if (time2 >= (time1 + 10))
{
time1 = time2;