Fixed compilation errors

This commit is contained in:
Tristan B. Velloza Kildaire 2022-05-20 21:02:05 +02:00
parent d1547eccef
commit 0f6a10f012
1 changed files with 2 additions and 1 deletions

View File

@ -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();