Merge #9487: Remove stray semicolon (Fix empty body warning)

cc05896 Remove stray semicolon (Fix empty body warning) (Douglas Roark)
This commit is contained in:
MarcoFalke 2017-01-07 19:26:36 +01:00
commit 25720fc394
No known key found for this signature in database
GPG Key ID: 2D7F2372E50FE137
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}
}