diff options
| author | Steven Bennetts <steve@lindenlab.com> | 2007-04-02 23:47:50 +0000 | 
|---|---|---|
| committer | Steven Bennetts <steve@lindenlab.com> | 2007-04-02 23:47:50 +0000 | 
| commit | 992de40c7765e5b7f290f1fc73030ccf3566c352 (patch) | |
| tree | a28f87d157616635967dafe422f449571ff6f02a | |
| parent | 3a67e9102b14d2a844f72ad4870aba153c8eff3c (diff) | |
Fixed build for convertj2c.
| -rw-r--r-- | indra/llcommon/llworkerthread.h | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/llcommon/llworkerthread.h b/indra/llcommon/llworkerthread.h index d466c35786..72fc1ebd90 100644 --- a/indra/llcommon/llworkerthread.h +++ b/indra/llcommon/llworkerthread.h @@ -71,7 +71,7 @@ public:  	handle_t addWorkRequest(LLWorkerClass* workerclass, S32 param, U32 priority = PRIORITY_NORMAL);  	void deleteWorker(LLWorkerClass* workerclass); // schedule for deletion -	S32 getNumDeletes() { return mDeleteList.size(); } // debug +	S32 getNumDeletes() { return (S32)mDeleteList.size(); } // debug  };  //============================================================================ | 
