summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--indra/llcommon/llsd.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/llcommon/llsd.cpp b/indra/llcommon/llsd.cpp
index 39d1f3e35f..3fa08aee8d 100644
--- a/indra/llcommon/llsd.cpp
+++ b/indra/llcommon/llsd.cpp
@@ -754,13 +754,13 @@ void LLSD::Impl::dumpStats() const
void LLSD::Impl::calcStats(S32 type_counts[], S32 share_counts[]) const
{
- S32 type = S32(type());
- if (0 <= type && type < LLSD::TypeLLSDNumTypes)
+ S32 tp = S32(type());
+ if (0 <= tp && tp < LLSD::TypeLLSDNumTypes)
{
- type_counts[type]++;
+ type_counts[tp]++;
if (shared())
{
- share_counts[type]++;
+ share_counts[tp]++;
}
}
}