1
0
Fork 0

RCON server: fixed compilation.

This commit is contained in:
Mattes D 2015-01-24 15:08:11 +01:00
parent b93903db23
commit 28ffc55d89
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ protected:
virtual void OnAccepted(cTCPLink & a_Link) override {}
virtual void OnError(int a_ErrorCode, const AString & a_ErrorMsg) override
{
LOGWARNING("RCON server error on port %d: %d (%s)", m_Port, a_ErrorCode, a_ErrorMsg);
LOGWARNING("RCON server error on port %d: %d (%s)", m_Port, a_ErrorCode, a_ErrorMsg.c_str());
}
};