FIX: fixed the default return of the tcp classes

This commit is contained in:
Henry Winkel
2023-07-05 18:05:58 +02:00
parent 8bc80f9885
commit 7fa17e0397
2 changed files with 2 additions and 2 deletions

View File

@@ -54,7 +54,7 @@ namespace DirectCommunication
receivedMessages_.get(msg);
return msg;
}
return nullptr;
return "NULL";
}
void DirectCommunicationClient::workerFunc_()

View File

@@ -55,7 +55,7 @@ namespace DirectCommunication
receivedMessages_.get(msg);
return msg;
}
return nullptr;
return "NULL";
}
int DirectCommunicationServer::countClients()