summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2012-04-03 17:37:32 -0400
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2012-04-03 17:37:32 -0400
commitcd12a3bba9da830b98d53a207daca20c29035cc5 (patch)
treec9b03f85cfc4d011190e7b6cc59c6cc67d5915c5 /indra
parentd53161497a8093731352ebcc62378812fbeb1abc (diff)
fixed integration test bug revealed by mac compiler pickiness
Diffstat (limited to 'indra')
-rwxr-xr-xindra/newview/tests/llviewerassetstats_test.cpp4
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";
}