1
0
forked from mirrors/0ad

Fix some printf string formatting

This was SVN commit r7688.
This commit is contained in:
Ykkrosh
2010-07-04 16:52:14 +00:00
parent 6d3930ace7
commit 7cef282d06
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ bool CNetHost::SendMessage(const CNetMessage* message, ENetPeer* peer, const cha
if (!packet)
return false;
LOGMESSAGE(L"Net: Sending message %hs of size %lu to %s", message->ToString().c_str(), (unsigned long)packet->dataLength, peerName);
LOGMESSAGE(L"Net: Sending message %hs of size %lu to %hs", message->ToString().c_str(), (unsigned long)packet->dataLength, peerName);
// Let ENet send the message to peer
if (enet_peer_send(peer, DEFAULT_CHANNEL, packet) < 0)