Skip to content

Commit ba974fe

Browse files
committed
Please consider the following formatting changes
1 parent 0d94146 commit ba974fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/src/SendingPolicy.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ std::vector<SendingPolicy> SendingPolicy::createDefaultPolicies()
6464
if (state.droppedMessages > 10) {
6565
timeout = 0;
6666
}
67-
int64_t result = info.channel.Send(parts, timeout*(state.droppedMessages+1));
67+
int64_t result = info.channel.Send(parts, timeout * (state.droppedMessages + 1));
6868
if (result >= 0) {
6969
state.droppedMessages = 0;
7070
} else if (state.droppedMessages < std::numeric_limits<decltype(state.droppedMessages)>::max()) {

0 commit comments

Comments
 (0)