Skip to content

Commit 25720fc

Browse files
author
MarcoFalke
committed
Merge #9487: Remove stray semicolon (Fix empty body warning)
cc05896 Remove stray semicolon (Fix empty body warning) (Douglas Roark)
2 parents 46b249e + cc05896 commit 25720fc

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)