Browse Source

Remove stray semicolon (Fix empty body warning)

Empty body introduced by commit #9319 should not be empty.
0.14
Douglas Roark 8 years ago
parent
commit
cc0589639c
No known key found for this signature in database
GPG Key ID: 99EC1B1C496D01BD
  1. 2
      src/net.cpp

2
src/net.cpp

@ -1804,7 +1804,7 @@ void CConnman::ThreadOpenAddedConnections() @@ -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;
}
}

Loading…
Cancel
Save