diff options
| author | Richard Linden <none@none> | 2013-12-10 14:04:09 -0800 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2013-12-10 14:04:09 -0800 | 
| commit | 0b40ee53e3d898990826f5d48ec1deecf3c05062 (patch) | |
| tree | e03dd22bc5002f7e070c6892b3860e0f4ef9f1bb | |
| parent | d4f3fe3c5691348b72729ba57cef337c1dca0141 (diff) | |
BUILDFIX: bad use of non static member
| -rwxr-xr-x | indra/llcommon/llthread.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llcommon/llthread.cpp b/indra/llcommon/llthread.cpp index 368a059182..3e3c876a54 100755 --- a/indra/llcommon/llthread.cpp +++ b/indra/llcommon/llthread.cpp @@ -132,7 +132,7 @@ void *APR_THREAD_FUNC LLThread::staticRun(apr_thread_t *apr_threadp, void *datap  #endif  	// for now, hard code all LLThreads to report to single master thread recorder, which is known to be running on main thread -	mRecorder = new LLTrace::ThreadRecorder(*LLTrace::get_master_thread_recorder()); +	threadp->mRecorder = new LLTrace::ThreadRecorder(*LLTrace::get_master_thread_recorder());  #if !LL_DARWIN  	sThreadID = threadp->mID; | 
