aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouglas Roark <doug@bloq.com>2017-01-07 09:49:14 -0800
committerDouglas Roark <doug@bloq.com>2017-01-07 09:49:14 -0800
commitcc0589639cd0c9c417daff917f2fe7c516e59e03 (patch)
treee07797e5b6ad84c8c9cbf53c7c8c29df17c5f988
parent46b249e578e8a3dfbe85bc7253a12e82ef4b658b (diff)
downloadbitcoin-cc0589639cd0c9c417daff917f2fe7c516e59e03.tar.xz
Remove stray semicolon (Fix empty body warning)
Empty body introduced by commit #9319 should not be empty.
-rw-r--r--src/net.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 0f0a7bf8dc..37e7dfed4c 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;
}
}