summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Bennetts <steve@lindenlab.com>2009-11-14 11:09:07 -0800
committerSteve Bennetts <steve@lindenlab.com>2009-11-14 11:09:07 -0800
commitf17399212edec08faf16fc844b2f9e5882f224f2 (patch)
tree825a0c22bab929cce0b7252ac68e2abe0e6716f7
parented06c4b8b937b42882ee1740def365d476bef10e (diff)
Compile fix for Windows
-rw-r--r--indra/newview/llagentwearables.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llagentwearables.cpp b/indra/newview/llagentwearables.cpp
index ab518adadd..6cb96d1336 100644
--- a/indra/newview/llagentwearables.cpp
+++ b/indra/newview/llagentwearables.cpp
@@ -2137,7 +2137,7 @@ void LLLibraryOutfitsFetch::outfitsDone(void)
void LLLibraryOutfitsFetch::contentsDone(void)
{
- for(S32 i = 0; i < mOutfits.size(); ++i)
+ for(S32 i = 0; i < (S32)mOutfits.size(); ++i)
{
// First, make a folder in the My Outfits directory.
const LLUUID parent_id = gInventory.findCategoryUUIDForType(LLFolderType::FT_MY_OUTFITS);