mirror of
https://github.com/skywind3000/kcp.git
synced 2026-08-19 06:03:28 +08:00
remove unused code, remove warning
This commit is contained in:
2
ikcp.c
2
ikcp.c
@@ -749,7 +749,7 @@ int ikcp_input(ikcpcb *kcp, const char *data, long size)
|
||||
ikcp_log(kcp, IKCP_LOG_INPUT, "[RI] %d bytes", size);
|
||||
}
|
||||
|
||||
if (data == NULL || size < IKCP_OVERHEAD) return -1;
|
||||
if (data == NULL || (int)size < (int)IKCP_OVERHEAD) return -1;
|
||||
|
||||
while (1) {
|
||||
IUINT32 ts, sn, len, una, conv;
|
||||
|
||||
Reference in New Issue
Block a user