diff options
author | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-04-21 19:12:50 +0300 |
---|---|---|
committer | Vadim ProductEngine <vsavchuk@productengine.com> | 2011-04-21 19:12:50 +0300 |
commit | bc3317576fd48e2b2d42edaba0ad3d765a726959 (patch) | |
tree | c60a9b9c58cf8d6a58883afa74c321adfc9b8c96 /indra | |
parent | 099da38ca9d6fc4c257d58f92f3892f7fd0fbfc6 (diff) |
Fixing Windows build ("signed/unsigned mismatch" warning).
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfloaterdaycycle.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterdaycycle.cpp b/indra/newview/llfloaterdaycycle.cpp index 6b5b3ee106..eb429d7803 100644 --- a/indra/newview/llfloaterdaycycle.cpp +++ b/indra/newview/llfloaterdaycycle.cpp @@ -554,7 +554,7 @@ void LLFloaterDayCycle::onAddKey(void* userData) break; } - if (sSliderToKey.size() >= max_sliders) + if ((S32)sSliderToKey.size() >= max_sliders) { LLSD args; args["SCOPE"] = LLEnvManager::getScopeString(sScope); |