summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2015-01-24 15:08:11 +0100
committerMattes D <github@xoft.cz>2015-01-27 14:53:28 +0100
commit28ffc55d895172ef68d41a1f831c4c4f766225fd (patch)
treea0619988ec6ed2559b3a9a209f20eef54ceeecf7
parentFixed RCONClient compilation. (diff)
downloadcuberite-28ffc55d895172ef68d41a1f831c4c4f766225fd.tar
cuberite-28ffc55d895172ef68d41a1f831c4c4f766225fd.tar.gz
cuberite-28ffc55d895172ef68d41a1f831c4c4f766225fd.tar.bz2
cuberite-28ffc55d895172ef68d41a1f831c4c4f766225fd.tar.lz
cuberite-28ffc55d895172ef68d41a1f831c4c4f766225fd.tar.xz
cuberite-28ffc55d895172ef68d41a1f831c4c4f766225fd.tar.zst
cuberite-28ffc55d895172ef68d41a1f831c4c4f766225fd.zip
-rw-r--r--src/RCONServer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/RCONServer.cpp b/src/RCONServer.cpp
index 2ec7f191f..63bc97fe3 100644
--- a/src/RCONServer.cpp
+++ b/src/RCONServer.cpp
@@ -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());
}
};