Warnings fixes, mostly signed/unsigned mismatch

This commit is contained in:
Inusaito Sayori
2015-07-30 11:46:44 -04:00
parent dfa40d8939
commit 9dadc8c054
20 changed files with 44 additions and 44 deletions

View File

@@ -135,7 +135,7 @@ void AIFetchInventoryFolder::multiplex_impl(state_type run_state)
// Look up UUID by name.
LLInventoryModel::cat_array_t* categories;
gInventory.getDirectDescendentsOf(mParentFolder, categories);
for (S32 i = 0; i < categories->size(); ++i)
for (U32 i = 0; i < categories->size(); ++i)
{
LLPointer<LLViewerInventoryCategory> const& category(categories->at(i));
if (category->getName() == mFolderName)