From 337f068a45e608f24c2fba12f1cd310eb3e6c22f Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Fri, 18 Dec 2020 21:18:58 +0200 Subject: [PATCH] Fixed compilation error --- source/libdnet/client.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libdnet/client.d b/source/libdnet/client.d index d77d2a8..03550fc 100644 --- a/source/libdnet/client.d +++ b/source/libdnet/client.d @@ -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)