1
0

Fixed All signedness warnings in HTTPServer.cpp

This commit is contained in:
Tycho
2014-04-02 06:36:25 -07:00
parent 7ece0cc836
commit 1f5a4a39f2
10 changed files with 17 additions and 14 deletions

View File

@@ -2633,7 +2633,7 @@ void cClientHandle::PacketError(unsigned char a_PacketType)
void cClientHandle::DataReceived(const char * a_Data, int a_Size)
void cClientHandle::DataReceived(const char * a_Data, size_t a_Size)
{
// Data is received from the client, store it in the buffer to be processed by the Tick thread:
m_TimeSinceLastPacket = 0;