Skip to content

Commit

Permalink
Refs #19939: Uncrustify
Browse files Browse the repository at this point in the history
Signed-off-by: Jesus Perez <jesusperez@eprosima.com>
  • Loading branch information
jepemi committed Dec 5, 2023
1 parent 1264331 commit 92ca25c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/cpp/rtps/transport/TCPTransportInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -930,9 +930,9 @@ void TCPTransportInterface::perform_listen_operation(
TransportReceiverInterface* receiver = it->second.first;
ReceiverInUseCV* receiver_in_use = it->second.second;
receiver_in_use->cv.wait(scopedLock, [&]()
{
return receiver_in_use->in_use == false;
});
{
return receiver_in_use->in_use == false;
});
if (TCPChannelResource::eConnectionStatus::eConnecting < channel->connection_status())
{
receiver_in_use->in_use = true;
Expand Down
2 changes: 1 addition & 1 deletion test/blackbox/common/BlackboxTestsTransportTCP.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -615,7 +615,7 @@ TEST_P(TransportTCP, TCPv6_copy)
EXPECT_EQ(tcpv6_transport_copy, tcpv6_transport);
}

// Test connection is successfully restablished after dropping and relaunching a TCP client (requester),
// Test connection is successfully restablished after dropping and relaunching a TCP client (requester),
// when the server's listening thread for the old client hasn't processed all its messages.
// Issue -> https://github.com/eProsima/Fast-DDS/issues/2409
// Issue -> https://github.com/eProsima/Fast-DDS/issues/4026
Expand Down
2 changes: 1 addition & 1 deletion test/blackbox/common/TCPReqRepHelloWorldReplier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ void TCPReqRepHelloWorldReplier::init(
puattr.topic.topicDataType = type_.getName();
puattr.topic.topicName = "HelloWorldTopicReply";
configPublisher("Reply");
if(use_bussy_listener)
if (use_bussy_listener)
{
reply_publisher_ = Domain::createPublisher(participant_, puattr, &reply_bussy_listener_);
}
Expand Down

0 comments on commit 92ca25c

Please sign in to comment.