diff options
author | Anchor Linden <anchor@lindenlab.com> | 2018-06-06 03:23:32 +0530 |
---|---|---|
committer | Anchor Linden <anchor@lindenlab.com> | 2018-06-06 03:23:32 +0530 |
commit | 5651b433d3fcfba6a98e31edc3a747059bf3560a (patch) | |
tree | 419b703b5e4cee25d79582c4625d5399d2f36500 | |
parent | 71fa94b3665b4554470314f481c9f0a35f8e6ef2 (diff) |
fix xcode build
-rw-r--r-- | indra/newview/llvoavatar.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 5eef48d735..b221dc7c35 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -1007,7 +1007,7 @@ void LLVOAvatar::dumpBakedStatus() const ETextureIndex index = baked_dict->mTextureIndex; if (!inst->isTextureDefined(index)) { - LL_CONT << " " << LLAvatarAppearanceDictionary::getInstance()->getTexture(index) ? LLAvatarAppearanceDictionary::getInstance()->getTexture(index)->mName : ""; + LL_CONT << " " << (LLAvatarAppearanceDictionary::getInstance()->getTexture(index) ? LLAvatarAppearanceDictionary::getInstance()->getTexture(index)->mName : ""); } } LL_CONT << " ) " << inst->getUnbakedPixelAreaRank(); |