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

@@ -569,7 +569,7 @@ namespace LLError
mTags(new const char*[tag_count]),
mTagCount(tag_count)
{
for (int i = 0; i < tag_count; i++)
for (size_t i = 0; i < tag_count; i++)
{
mTags[i] = tags[i];
}