diff options
author | Brad Linden <46733234+brad-linden@users.noreply.github.com> | 2024-09-12 15:25:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 15:25:56 -0700 |
commit | 7dd04dea9fb6882f4a7c8a5a5b79ace84838ae0e (patch) | |
tree | 14b5fcdd1e0e7089a90faa4f45e7b203bdc7a702 /indra/llcommon | |
parent | ccbd69bf6b287861b41fdb00e9d372746dfc2702 (diff) | |
parent | 3c5e8ded9399dc1419b8596c99f2a1ef9656b7bb (diff) |
Merge pull request #2557 from secondlife/davep-fix-mac-vb
OS X - Fix black screen and Tracy build
Diffstat (limited to 'indra/llcommon')
-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; |