From 5d1e85dde14ed67ad6acd4f2e0e7ce4efd3f02c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Sun, 8 Aug 2010 09:23:13 +0200 Subject: [PATCH] CLI: increase delay between progress reports from 1s to 10s --- cli/cppcheckexecutor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/cppcheckexecutor.cpp b/cli/cppcheckexecutor.cpp index 0b4505bac..f79fd2527 100644 --- a/cli/cppcheckexecutor.cpp +++ b/cli/cppcheckexecutor.cpp @@ -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;