From 992de40c7765e5b7f290f1fc73030ccf3566c352 Mon Sep 17 00:00:00 2001
From: Steven Bennetts <steve@lindenlab.com>
Date: Mon, 2 Apr 2007 23:47:50 +0000
Subject: [PATCH] Fixed build for convertj2c.

---
 indra/llcommon/llworkerthread.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/indra/llcommon/llworkerthread.h b/indra/llcommon/llworkerthread.h
index d466c35786a..72fc1ebd902 100644
--- a/indra/llcommon/llworkerthread.h
+++ b/indra/llcommon/llworkerthread.h
@@ -71,7 +71,7 @@ class LLWorkerThread : public LLQueuedThread
 	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
 };
 
 //============================================================================
-- 
GitLab