mirror of
https://github.com/BeamMP/BeamMP-Server.git
synced 2025-07-03 08:15:35 +00:00
Common: missed semicolon
This commit is contained in:
parent
1e2f060107
commit
1444d91e7e
@ -90,7 +90,7 @@ private:
|
||||
static inline std::mutex mShutdownHandlersMutex {};
|
||||
static inline std::deque<TShutdownHandler> mShutdownHandlers {};
|
||||
|
||||
static inline Version mVersion { 2, 2, 0 };
|
||||
static inline Version mVersion { 2, 3, 0 };
|
||||
};
|
||||
|
||||
std::string ThreadName(bool DebugModeOverride = false);
|
||||
|
@ -185,7 +185,7 @@ std::string GetPlatformAgnosticErrorString() {
|
||||
if (*msgbuf) {
|
||||
return std::to_string(GetLastError()) + " - " + std::string(msgbuf);
|
||||
} else {
|
||||
return std::to_string(GetLastError())
|
||||
return std::to_string(GetLastError());
|
||||
}
|
||||
#else // posix
|
||||
return std::strerror(errno);
|
||||
|
@ -62,7 +62,6 @@ void TNetwork::UDPServerMain() {
|
||||
//return;
|
||||
}
|
||||
|
||||
|
||||
info(("Vehicle data network online on port ") + std::to_string(Application::Settings.Port) + (" with a Max of ")
|
||||
+ std::to_string(Application::Settings.MaxPlayers) + (" Clients"));
|
||||
while (!mShutdown) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user