Skip to content

Commit

Permalink
Refs #20972. Uncrustify.
Browse files Browse the repository at this point in the history
Signed-off-by: Miguel Company <miguelcompany@eprosima.com>
  • Loading branch information
MiguelCompany committed May 16, 2024
1 parent 27a04e9 commit c0a0f63
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cpp/rtps/transport/UDPTransportInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,13 +175,13 @@ bool UDPTransportInterface::init(
if (cfg_send_size > 0 && mSendBufferSize != cfg_send_size)
{
EPROSIMA_LOG_WARNING(TRANSPORT_UDP, "UDPTransport sendBufferSize could not be set to the desired value. "
<< "Using " << mSendBufferSize << " instead of " << cfg_send_size);
<< "Using " << mSendBufferSize << " instead of " << cfg_send_size);
}

if (cfg_recv_size > 0 && mReceiveBufferSize != cfg_recv_size)
{
EPROSIMA_LOG_WARNING(TRANSPORT_UDP, "UDPTransport receiveBufferSize could not be set to the desired value. "
<< "Using " << mReceiveBufferSize << " instead of " << cfg_recv_size);
<< "Using " << mReceiveBufferSize << " instead of " << cfg_recv_size);
}

set_send_buffer_size(mSendBufferSize);
Expand Down

0 comments on commit c0a0f63

Please sign in to comment.