aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorDouglas Roark <[email protected]>2017-01-07 09:49:14 -0800
committerDouglas Roark <[email protected]>2017-01-07 09:49:14 -0800
commitcc0589639cd0c9c417daff917f2fe7c516e59e03 (patch)
treee07797e5b6ad84c8c9cbf53c7c8c29df17c5f988 /src/net.cpp
parentMerge #9408: Allow shutdown during LoadMempool, dump only when necessary (diff)
downloaddiscoin-cc0589639cd0c9c417daff917f2fe7c516e59e03.tar.xz
discoin-cc0589639cd0c9c417daff917f2fe7c516e59e03.zip
Remove stray semicolon (Fix empty body warning)
Empty body introduced by commit #9319 should not be empty.
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}
}