1
0

Fixed a few MSVC warnings.

This commit is contained in:
madmaxoft
2014-01-06 22:22:33 +01:00
parent db978fc687
commit 9c8af58b75
11 changed files with 12 additions and 16 deletions

View File

@@ -198,7 +198,7 @@ void cProtocolRecognizer::SendDisconnect(const AString & a_Reason)
else
{
// This is used when the client sends a server-ping, respond with the default packet:
WriteByte ((char)0xff); // PACKET_DISCONNECT
WriteByte (0xff); // PACKET_DISCONNECT
WriteString(a_Reason);
}
}