summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2016-11-13 19:56:49 +0100
committerGitHub <noreply@github.com>2016-11-13 19:56:49 +0100
commit1f68e3b33bfc342292fbab9ef8a165168719f5b7 (patch)
treed660e166d6ac681a1bc5b3bf3bbbf74e3c672c33
parentMerge pull request #3430 from cuberite/Overrides (diff)
parentAdded strict static_cast to void * in printf. (diff)
downloadcuberite-1f68e3b33bfc342292fbab9ef8a165168719f5b7.tar
cuberite-1f68e3b33bfc342292fbab9ef8a165168719f5b7.tar.gz
cuberite-1f68e3b33bfc342292fbab9ef8a165168719f5b7.tar.bz2
cuberite-1f68e3b33bfc342292fbab9ef8a165168719f5b7.tar.lz
cuberite-1f68e3b33bfc342292fbab9ef8a165168719f5b7.tar.xz
cuberite-1f68e3b33bfc342292fbab9ef8a165168719f5b7.tar.zst
cuberite-1f68e3b33bfc342292fbab9ef8a165168719f5b7.zip
-rw-r--r--tests/Network/EchoServer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/Network/EchoServer.cpp b/tests/Network/EchoServer.cpp
index fb5b06110..ee356a995 100644
--- a/tests/Network/EchoServer.cpp
+++ b/tests/Network/EchoServer.cpp
@@ -30,7 +30,7 @@ class cEchoLinkCallbacks:
ASSERT(m_Link != nullptr);
// Echo the incoming data back to outgoing data:
- LOGD("%p (%s:%d): Data received (%u bytes), echoing back.", m_Link.get(), m_Link->GetRemoteIP().c_str(), m_Link->GetRemotePort(), static_cast<unsigned>(a_Size));
+ LOGD("%p (%s:%d): Data received (%u bytes), echoing back.", static_cast<void *>(m_Link.get()), m_Link->GetRemoteIP().c_str(), m_Link->GetRemotePort(), static_cast<unsigned>(a_Size));
m_Link->Send(a_Data, a_Size);
LOGD("Echo queued");
@@ -51,7 +51,7 @@ class cEchoLinkCallbacks:
{
ASSERT(m_Link != nullptr);
- LOGD("%p (%s:%d): Remote has closed the connection.", m_Link.get(), m_Link->GetRemoteIP().c_str(), m_Link->GetRemotePort());
+ LOGD("%p (%s:%d): Remote has closed the connection.", static_cast<void *>(m_Link.get()), m_Link->GetRemoteIP().c_str(), m_Link->GetRemotePort());
m_Link.reset();
}
@@ -60,7 +60,7 @@ class cEchoLinkCallbacks:
{
ASSERT(m_Link != nullptr);
- LOGD("%p (%s:%d): Error %d in the cEchoLinkCallbacks: %s", m_Link.get(), m_Link->GetRemoteIP().c_str(), m_Link->GetRemotePort(), a_ErrorCode, a_ErrorMsg.c_str());
+ LOGD("%p (%s:%d): Error %d in the cEchoLinkCallbacks: %s", static_cast<void *>(m_Link.get()), m_Link->GetRemoteIP().c_str(), m_Link->GetRemotePort(), a_ErrorCode, a_ErrorMsg.c_str());
m_Link.reset();
}