diff options
author | James Cook <james@lindenlab.com> | 2009-10-29 16:07:00 -0700 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-10-29 16:07:00 -0700 |
commit | f553f7fd157d5f72d640cfea9cf4e4a7cc8e636c (patch) | |
tree | 2130b3651a9b115ad24b1150f0843447426201a1 /indra | |
parent | a1ec40c72beeb4ce80946b3050ac7f9ea8f40c9c (diff) |
Fix signed/unsigned mismatch breaking the build.
Diffstat (limited to 'indra')
-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 89a7d8b91f..380469f5b3 100644 --- a/indra/newview/llagentwearables.cpp +++ b/indra/newview/llagentwearables.cpp @@ -1989,7 +1989,7 @@ void LLAgentWearables::animateAllWearableParams(F32 delta, BOOL set_by_user) { for( S32 type = 0; type < WT_COUNT; ++type ) { - for (S32 count = 0; count < (U32)getWearableCount((EWearableType)type); ++count) + for (S32 count = 0; count < (S32)getWearableCount((EWearableType)type); ++count) { LLWearable *wearable = getWearable((EWearableType)type,count); wearable->animateParams(delta, set_by_user); |