summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-10-28 17:16:51 -0700
committerRichard Linden <none@none>2013-10-28 17:16:51 -0700
commitcc54bea2167494d69a1fa9417b0c9891b28d9a1a (patch)
treee25e8347b54ce14ed7db253a50bdb9720d681316 /indra/llcommon
parent371198289b2e3f5894071483968d5e0fa7a4ceeb (diff)
fixed bad llasserts that didn't have terminating semicolon
Diffstat (limited to 'indra/llcommon')
-rwxr-xr-xindra/llcommon/llqueuedthread.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llcommon/llqueuedthread.cpp b/indra/llcommon/llqueuedthread.cpp
index 176761c17c..8cef4293cd 100755
--- a/indra/llcommon/llqueuedthread.cpp
+++ b/indra/llcommon/llqueuedthread.cpp
@@ -246,7 +246,7 @@ bool LLQueuedThread::addRequest(QueuedRequest* req)
// MAIN thread
bool LLQueuedThread::waitForResult(LLQueuedThread::handle_t handle, bool auto_complete)
{
- llassert (handle != nullHandle())
+ llassert (handle != nullHandle());
bool res = false;
bool waspaused = isPaused();
bool done = false;