diff options
author | Steve Bennetts <steve@lindenlab.com> | 2009-11-14 11:09:07 -0800 |
---|---|---|
committer | Steve Bennetts <steve@lindenlab.com> | 2009-11-14 11:09:07 -0800 |
commit | f17399212edec08faf16fc844b2f9e5882f224f2 (patch) | |
tree | 825a0c22bab929cce0b7252ac68e2abe0e6716f7 | |
parent | ed06c4b8b937b42882ee1740def365d476bef10e (diff) |
Compile fix for Windows
-rw-r--r-- | indra/newview/llagentwearables.cpp | 2 |
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); |