diff options
Diffstat (limited to 'indra/llcommon')
| -rw-r--r-- | indra/llcommon/llerror.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index b66c3c3c20..a1ad9e84b5 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -569,12 +569,13 @@ namespace LLError  		}  #endif  		mFunctionString += std::string(mFunction) + ":"; +        const std::string tag_hash("#");  		for (size_t i = 0; i < mTagCount; i++)  		{ +            mTagString.append(tag_hash);  			mTagString.append(mTags[i]);              mTagString.append((i == mTagCount - 1) ? "" : ",");  		} -        mTagString.append("#");  	}  	CallSite::~CallSite() | 
