Skip to content

Commit cc05896

Browse files
author
Douglas Roark
committed
Remove stray semicolon (Fix empty body warning)
Empty body introduced by commit #9319 should not be empty.
1 parent 46b249e commit cc05896

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/net.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1804,7 +1804,7 @@ void CConnman::ThreadOpenAddedConnections()
18041804
}
18051805
}
18061806
// Retry every 60 seconds if a connection was attempted, otherwise two seconds
1807-
if (!interruptNet.sleep_for(std::chrono::seconds(tried ? 60 : 2)));
1807+
if (!interruptNet.sleep_for(std::chrono::seconds(tried ? 60 : 2)))
18081808
return;
18091809
}
18101810
}

0 commit comments

Comments
 (0)