From fa53653e60f5761c157b76423b4449fe38788d8f Mon Sep 17 00:00:00 2001 From: Oz Linden <oz@lindenlab.com> Date: Mon, 24 Jul 2017 14:49:56 -0400 Subject: [PATCH] fix separator between tags and file/function --- indra/llcommon/llerror.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/llcommon/llerror.cpp b/indra/llcommon/llerror.cpp index a1ad9e84b5b..e14fd956399 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) ? ";" : ","); } } -- GitLab