summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--indra/llcommon/llworkerthread.h2
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
};
//============================================================================