From 61faff4d1df94beb48d5ef13aa2583761c059c25 Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Thu, 29 Oct 2020 11:26:52 +0200 Subject: [PATCH] Fixed compilation issues --- source/dnetd/dconnection.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/dnetd/dconnection.d b/source/dnetd/dconnection.d index 64c0f1d..88ef475 100644 --- a/source/dnetd/dconnection.d +++ b/source/dnetd/dconnection.d @@ -180,7 +180,7 @@ public class DConnection : Thread private void cleanUp() { - grpintln(to!(string)(this)~" Cleaning up connection..."); + gprintln(to!(string)(this)~" Cleaning up connection..."); /* Remove this user from all channels he is in */ DChannel[] channels = server.getChannels(); @@ -895,7 +895,7 @@ public class DConnection : Thread /* Find the user to send to */ DConnection user = server.findUser(username); /*TODO: Ins erver not just use it directly */ - gprintln("sendUserMessage(): ", user); + gprintln("sendUserMessage(): "~to!(string)(user)); /* If the user was found */ if(user)