From 222d9957a1a566464d6a824caaf9a56539eb3234 Mon Sep 17 00:00:00 2001 From: Tiger Wang Date: Sun, 28 Mar 2021 22:33:24 +0100 Subject: cIsThread cleanup + Semi-gracefully handle unexpected exceptions * No-one cared about the return values, remove them --- src/Server.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/Server.cpp') diff --git a/src/Server.cpp b/src/Server.cpp index a0b9f245d..7e7aa0c67 100644 --- a/src/Server.cpp +++ b/src/Server.cpp @@ -411,7 +411,8 @@ bool cServer::Start(void) LOGERROR("Couldn't open any ports. Aborting the server"); return false; } - return m_TickThread.Start(); + m_TickThread.Start(); + return true; } -- cgit v1.2.3