summaryrefslogtreecommitdiff
path: root/src/net/network.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/network.cpp')
-rw-r--r--src/net/network.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/net/network.cpp b/src/net/network.cpp
index 4504a944..fbcf199b 100644
--- a/src/net/network.cpp
+++ b/src/net/network.cpp
@@ -143,7 +143,7 @@ int connectionThread(void *ptr)
memset(out, '\0', buffer_size);
in_size = 0;
out_size = 0;
-
+
SDL_mutexP(mMutex);
logger->log("Network::Started session with %s:%i",
iptostring(((IPaddress *)ptr)->host),
@@ -343,13 +343,13 @@ bool packetReady()
if (in_size >= 4)
{
length = readWord(2);
- if (in_size >= length)
+ if (in_size >= (unsigned int)length)
{
ret = true;
}
}
}
- else if (in_size >= length)
+ else if (in_size >= (unsigned int)length)
{
ret = true;
}