summaryrefslogtreecommitdiffstats
path: root/src/Server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Server.cpp')
-rw-r--r--src/Server.cpp3
1 files changed, 2 insertions, 1 deletions
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;
}