diff options
author | Oz Linden <oz@lindenlab.com> | 2017-07-24 14:49:56 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2017-07-24 14:49:56 -0400 |
commit | fa53653e60f5761c157b76423b4449fe38788d8f (patch) | |
tree | 703ac85a775560e4ad129bce2123f30074f31f42 | |
parent | f1c211b4874098f0a22d40e61fc741d39972373d (diff) |
fix separator between tags and file/function
-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 a1ad9e84b5..e14fd95639 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -574,7 +574,7 @@ namespace LLError { mTagString.append(tag_hash); mTagString.append(mTags[i]); - mTagString.append((i == mTagCount - 1) ? "" : ","); + mTagString.append((i == mTagCount - 1) ? ";" : ","); } } |