summaryrefslogtreecommitdiff
path: root/indra/newview/llcommandhandler.cpp
diff options
context:
space:
mode:
authorBrad Kittenbrink <brad@lindenlab.com>2020-04-02 10:55:31 -0700
committerBrad Kittenbrink <brad@lindenlab.com>2020-04-02 10:55:31 -0700
commit68105d9f06aea69980cf0402f00da0e2be450dd2 (patch)
tree25067f48ff3904701f3ac0843ccda4187034aef8 /indra/newview/llcommandhandler.cpp
parent328329fceab6b18dd7dda6f7ce9a3d4788fd7c54 (diff)
Fixed -Wstring-plus-int related errors for compatibility with Xcode-11.4
Diffstat (limited to 'indra/newview/llcommandhandler.cpp')
-rw-r--r--indra/newview/llcommandhandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llcommandhandler.cpp b/indra/newview/llcommandhandler.cpp
index 76d965b1f1..23e2271eae 100644
--- a/indra/newview/llcommandhandler.cpp
+++ b/indra/newview/llcommandhandler.cpp
@@ -222,7 +222,7 @@ struct symbol_info
#define ent(SYMBOL) \
{ \
- #SYMBOL + 28, /* skip "LLCommandHandler::UNTRUSTED_" prefix */ \
+ &#SYMBOL[28], /* skip "LLCommandHandler::UNTRUSTED_" prefix */ \
SYMBOL \
}