diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-11-16 00:24:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-12-12 21:18:05 +0300 |
commit | 172734fc0a75b6f00f7ef8ecabfda32d5c341187 (patch) | |
tree | 9b7fd45b12753a1d9c29bfe8936af72daabcbcc4 /src/common/socket.c | |
parent | af9e75a46245eee406eb1b9d7b3c98181b3a9cc4 (diff) | |
download | hercules-172734fc0a75b6f00f7ef8ecabfda32d5c341187.tar.gz hercules-172734fc0a75b6f00f7ef8ecabfda32d5c341187.tar.bz2 hercules-172734fc0a75b6f00f7ef8ecabfda32d5c341187.tar.xz hercules-172734fc0a75b6f00f7ef8ecabfda32d5c341187.zip |
Fix some visual studio warnings.
Diffstat (limited to 'src/common/socket.c')
-rw-r--r-- | src/common/socket.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/socket.c b/src/common/socket.c index 025776172..95d8bf578 100644 --- a/src/common/socket.c +++ b/src/common/socket.c @@ -2133,7 +2133,7 @@ static void socket_validateWfifo(int fd, size_t len) ShowError("Sent packet 0x%04X with size %d, but must be size %d\n", cmd, len2, packet_len); Assert_retv(0); } - if (last_head_size < packet_len) { + if (last_head_size < (uint32)packet_len) { ShowError("Reserved too small packet buffer for packet 0x%04X with size %u, but must be size %d\n", cmd, last_head_size, packet_len); Assert_retv(0); } |