aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorMarcoFalke <[email protected]>2017-01-07 19:26:36 +0100
committerMarcoFalke <[email protected]>2017-01-07 19:26:40 +0100
commit25720fc394e27a951bcad26095fb5a711bfacb8f (patch)
treee07797e5b6ad84c8c9cbf53c7c8c29df17c5f988 /src/net.cpp
parentMerge #9408: Allow shutdown during LoadMempool, dump only when necessary (diff)
parentRemove stray semicolon (Fix empty body warning) (diff)
downloaddiscoin-25720fc394e27a951bcad26095fb5a711bfacb8f.tar.xz
discoin-25720fc394e27a951bcad26095fb5a711bfacb8f.zip
Merge #9487: Remove stray semicolon (Fix empty body warning)
cc05896 Remove stray semicolon (Fix empty body warning) (Douglas Roark)
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;
}
}