diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-06-20 22:11:41 +0100 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2017-06-20 22:11:41 +0100 |
commit | 4d29b95fb5f2a909be3379181d3f133093ce9c8c (patch) | |
tree | 35ffd92657911b6d8a83a4860f89b40417922a8b /indra/llcommon/llerror.cpp | |
parent | 30b241d8a30ef48d39064f7edc844aa653c396e8 (diff) | |
parent | f1e52656e9e328d66aa5050bc9e59948a0217283 (diff) |
merge
Diffstat (limited to 'indra/llcommon/llerror.cpp')
-rw-r--r-- | indra/llcommon/llerror.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index e6407ecf22..9c49f7eff4 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -572,7 +572,7 @@ namespace LLError mFunctionString += std::string(mFunction) + ":"; for (size_t i = 0; i < mTagCount; i++) { - mTagString += std::string("#") + mTags[i] + ((i == mTagCount - 1) ? "" : ","); + mTagString += std::string("#") + mTags[i] + ((i == mTagCount - 1) ? " " : ","); } } |