diff options
author | Nicky <nicky.dasmijn@posteo.nl> | 2024-07-26 15:54:36 +0200 |
---|---|---|
committer | Nicky <nicky.dasmijn@posteo.nl> | 2024-07-26 15:54:36 +0200 |
commit | 8020079eb2bb50175f72fc7dde38346db7ee2477 (patch) | |
tree | 6b1c41c8fa460f38dd80f2f0c55e14cde4377b7a | |
parent | f32d3767dc6f0d4d831882135d2eb88ee96ba79d (diff) |
Add missing semicolon
-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 6c3b9c9542..237f07288e 100644 --- a/indra/llcommon/llerror.cpp +++ b/indra/llcommon/llerror.cpp @@ -109,7 +109,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; |