Fix warnings.

This commit is contained in:
Inusaito Sayori
2015-06-19 17:28:09 -04:00
parent b11511b7b9
commit 8f2c92d198
7 changed files with 10 additions and 10 deletions

View File

@@ -287,7 +287,7 @@ U8 *LLGestureList::serialize(U8 *buffer) const
htonmemcpy(buffer, &count, MVT_S32, 4);
buffer += sizeof(count);
for (S32 i = 0; i < count; i++)
for (U32 i = 0; i < count; i++)
{
buffer = mList[i]->serialize(buffer);
}