summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft <github@xoft.cz>2014-02-04 22:41:54 +0100
committermadmaxoft <github@xoft.cz>2014-02-04 22:41:54 +0100
commit91a8db0d7ef3187b52d6f7e7906b28ae8ce03ae0 (patch)
tree7631d901b19f89812f86e86e6dc44ef194078613
parentFixed a gcc warning in ManualBindings. (diff)
downloadcuberite-91a8db0d7ef3187b52d6f7e7906b28ae8ce03ae0.tar
cuberite-91a8db0d7ef3187b52d6f7e7906b28ae8ce03ae0.tar.gz
cuberite-91a8db0d7ef3187b52d6f7e7906b28ae8ce03ae0.tar.bz2
cuberite-91a8db0d7ef3187b52d6f7e7906b28ae8ce03ae0.tar.lz
cuberite-91a8db0d7ef3187b52d6f7e7906b28ae8ce03ae0.tar.xz
cuberite-91a8db0d7ef3187b52d6f7e7906b28ae8ce03ae0.tar.zst
cuberite-91a8db0d7ef3187b52d6f7e7906b28ae8ce03ae0.zip
-rw-r--r--src/Protocol/Protocol17x.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Protocol/Protocol17x.cpp b/src/Protocol/Protocol17x.cpp
index 8168e8314..52c0099ed 100644
--- a/src/Protocol/Protocol17x.cpp
+++ b/src/Protocol/Protocol17x.cpp
@@ -99,7 +99,7 @@ void cProtocol172::DataReceived(const char * a_Data, int a_Size)
Byte Decrypted[512];
while (a_Size > 0)
{
- int NumBytes = (a_Size > sizeof(Decrypted)) ? sizeof(Decrypted) : a_Size;
+ int NumBytes = (a_Size > (int)sizeof(Decrypted)) ? (int)sizeof(Decrypted) : a_Size;
m_Decryptor.ProcessData(Decrypted, (Byte *)a_Data, NumBytes);
AddReceivedData((const char *)Decrypted, NumBytes);
a_Size -= NumBytes;
@@ -1836,7 +1836,7 @@ void cProtocol172::SendData(const char * a_Data, int a_Size)
Byte Encrypted[8192]; // Larger buffer, we may be sending lots of data (chunks)
while (a_Size > 0)
{
- int NumBytes = (a_Size > sizeof(Encrypted)) ? sizeof(Encrypted) : a_Size;
+ int NumBytes = (a_Size > (int)sizeof(Encrypted)) ? (int)sizeof(Encrypted) : a_Size;
m_Encryptor.ProcessData(Encrypted, (Byte *)a_Data, NumBytes);
m_Client->SendData((const char *)Encrypted, NumBytes);
a_Size -= NumBytes;