From cc0589639cd0c9c417daff917f2fe7c516e59e03 Mon Sep 17 00:00:00 2001 From: Douglas Roark Date: Sat, 7 Jan 2017 09:49:14 -0800 Subject: [PATCH] Remove stray semicolon (Fix empty body warning) Empty body introduced by commit #9319 should not be empty. --- src/net.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net.cpp b/src/net.cpp index 0f0a7bf8d..37e7dfed4 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -1804,7 +1804,7 @@ void CConnman::ThreadOpenAddedConnections() } } // Retry every 60 seconds if a connection was attempted, otherwise two seconds - if (!interruptNet.sleep_for(std::chrono::seconds(tried ? 60 : 2))); + if (!interruptNet.sleep_for(std::chrono::seconds(tried ? 60 : 2))) return; } }