diff options
author | Brad Linden <brad@lindenlab.com> | 2024-09-12 15:03:44 -0700 |
---|---|---|
committer | Brad Linden <brad@lindenlab.com> | 2024-09-12 15:03:44 -0700 |
commit | bb9a2dd75bce568c5eef596b69a503270994e0ba (patch) | |
tree | 09bfba63b6d69e63dd40cf1b324a14dbcee9ea8c | |
parent | 13e74a32871c7c8f7c7556c6fc08150fc6f27876 (diff) |
Fix for mac build with tracy enabled.
-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 ad35bc84f2..90c6ba309b 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -110,7 +110,7 @@ namespace { virtual void recordMessage(LLError::ELevel level, const std::string& message) override { - LL_PROFILE_ZONE_SCOPED_CATEGORY_LOGGING + LL_PROFILE_ZONE_SCOPED_CATEGORY_LOGGING; int syslogPriority = LOG_CRIT; switch (level) { case LLError::LEVEL_DEBUG: syslogPriority = LOG_DEBUG; break; |