diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-04-03 17:37:32 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2012-04-03 17:37:32 -0400 |
commit | cd12a3bba9da830b98d53a207daca20c29035cc5 (patch) | |
tree | c9b03f85cfc4d011190e7b6cc59c6cc67d5915c5 /indra/newview | |
parent | d53161497a8093731352ebcc62378812fbeb1abc (diff) |
fixed integration test bug revealed by mac compiler pickiness
Diffstat (limited to 'indra/newview')
-rwxr-xr-x | indra/newview/tests/llviewerassetstats_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/tests/llviewerassetstats_test.cpp b/indra/newview/tests/llviewerassetstats_test.cpp index ba760c0695..56d2004c17 100755 --- a/indra/newview/tests/llviewerassetstats_test.cpp +++ b/indra/newview/tests/llviewerassetstats_test.cpp @@ -49,8 +49,8 @@ void LLVOAvatar::getNearbyRezzedStats(std::vector<S32>& counts) std::string LLVOAvatar::rezStatusToString(S32 rez_status) { if (rez_status==0) return "cloud"; - if (rez_status=1) return "gray"; - if (rez_status=2) return "textured"; + if (rez_status==1) return "gray"; + if (rez_status==2) return "textured"; return "unknown"; } |