From cfab478279732f86476e361e937da5fde495d326 Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Fri, 2 Dec 2016 09:02:33 -0500 Subject: Fixed sleep time thing that was introduced last commit --- toldya.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toldya.cpp') diff --git a/toldya.cpp b/toldya.cpp index e152f05..5f05b20 100644 --- a/toldya.cpp +++ b/toldya.cpp @@ -74,7 +74,7 @@ int main(int argc, char** argv) } }); - std::this_thread::sleep_for(to_wait); + std::this_thread::sleep_for(std::chrono::minutes(1)); for (;;) { @@ -115,7 +115,7 @@ int main(int argc, char** argv) std::cout << "Sleeping for " << (waitlen/60/60/24) << " days..." << std::endl; } - std::this_thread::sleep_for(std::chrono::minutes(1)); + std::this_thread::sleep_for(to_wait); // Unfollow people who have unfollowed us try -- cgit 1.4.1