Fixed compilation error

This commit is contained in:
Tristan B. Kildaire 2020-12-18 21:18:58 +02:00
parent 50cd66b733
commit 337f068a45
1 changed files with 1 additions and 1 deletions

View File

@ -347,7 +347,7 @@ public final class DClient
/* Send the protocol data */
DataMessage protocolData = new DataMessage(reqRepQueue.getTag(), data);
bool status = bSendMessage(socket, protocolData.encode());
status = bSendMessage(socket, protocolData.encode());
/* If the send worked */
if(status)