summaryrefslogtreecommitdiff
path: root/indra/llcommon/llqueuedthread.cpp
diff options
context:
space:
mode:
authorXiaohong Bao <bao@lindenlab.com>2013-10-25 10:29:45 -0600
committerXiaohong Bao <bao@lindenlab.com>2013-10-25 10:29:45 -0600
commit555cf227ffed470184b55bc5a87b125da66f0a16 (patch)
tree871213f0dbf487628eab0425707aeabb96af3d1d /indra/llcommon/llqueuedthread.cpp
parentbcba6ee3a5e8c34e4686e79dcd45f19a9caa2cfb (diff)
trivial: fix several weird compiling errors.
Diffstat (limited to 'indra/llcommon/llqueuedthread.cpp')
-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;