Browse Source

Removed trailing space

Paul-Louis Ageneau 5 years ago
parent
commit
75f23f202f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/sctptransport.cpp

+ 1 - 1
src/sctptransport.cpp

@@ -356,7 +356,7 @@ bool SctpTransport::trySendMessage(message_ptr message) {
 		PLOG_VERBOSE << "SCTP sent size=" << message->size();
 		return true;
 	} else if (errno == EWOULDBLOCK && errno == EAGAIN) {
-		PLOG_VERBOSE << "SCTP sending not possible ";
+		PLOG_VERBOSE << "SCTP sending not possible";
 		return false;
 	} else {
 		PLOG_ERROR << "SCTP sending failed, errno=" << errno;