Skip to content

Commit

Permalink
Remove stray semicolon (Fix empty body warning)
Browse files Browse the repository at this point in the history
Empty body introduced by commit #9319 should not be empty.
  • Loading branch information
Douglas Roark committed Jan 7, 2017
1 parent 46b249e commit cc05896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/net.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}
Expand Down

0 comments on commit cc05896

Please sign in to comment.