diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-01-17 19:03:37 +0000 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2018-01-17 19:03:37 +0000 |
commit | 64c1b9a118c7a84c0ca20df408b8551a0ccdf28e (patch) | |
tree | ccdf21385c9e338e0c75cf594a432bea56e501de /indra/newview/llvovolume.cpp | |
parent | b57ac03b395c7637be7a224ecaefe96afef2ed10 (diff) |
More fixes for pointer-to-string issues
Diffstat (limited to 'indra/newview/llvovolume.cpp')
-rw-r--r-- | indra/newview/llvovolume.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llvovolume.cpp b/indra/newview/llvovolume.cpp index a6b70fe2be..7192b4a196 100644 --- a/indra/newview/llvovolume.cpp +++ b/indra/newview/llvovolume.cpp @@ -3400,7 +3400,7 @@ void LLVOVolume::setExtendedMeshFlags(U32 flags) param_block->setFlags(flags); } parameterChanged(LLNetworkData::PARAMS_EXTENDED_MESH, true); - LL_DEBUGS("AnimatedObjects") << (U32) this + LL_DEBUGS("AnimatedObjects") << this << " new flags " << flags << " curr_flags " << curr_flags << ", calling onSetExtendedMeshFlags()" << LL_ENDL; @@ -3919,7 +3919,7 @@ void LLVOVolume::parameterChanged(U16 param_type, LLNetworkData* data, BOOL in_u bool was_enabled = (getControlAvatar() != NULL); if (enabled != was_enabled) { - LL_DEBUGS("AnimatedObjects") << (U32) this + LL_DEBUGS("AnimatedObjects") << this << " calling onSetExtendedMeshFlags, enabled " << (U32) enabled << " was_enabled " << (U32) was_enabled << " local_origin " << (U32) local_origin |