From 0f6a10f0127e77fc501b81dd935871de251626dc Mon Sep 17 00:00:00 2001 From: "Tristan B. Kildaire" Date: Fri, 20 May 2022 21:02:05 +0200 Subject: [PATCH] Fixed compilation errors --- source/tristanable/watcher.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/tristanable/watcher.d b/source/tristanable/watcher.d index 7f58b2d..272529d 100644 --- a/source/tristanable/watcher.d +++ b/source/tristanable/watcher.d @@ -35,9 +35,10 @@ public final class Watcher : Thread super(&run); this.manager = manager; this.endpoint = endpoint; + this.newSys = newSys; /* If we are to use the new system then initialize the socket sets */ - if(this.newSys = newSys) + if(this.newSys) { this.timeOut = timeOut; initSelect();