Terrible typo in the previous commit!

This commit is contained in:
John Hurliman
2009-10-22 11:07:23 -07:00
parent 6ca4b0f366
commit 36b0e5e1d3

View File

@@ -1345,7 +1345,7 @@ namespace OpenSim.Framework
wrapper.FireAndForget(callback, obj);
break;
case FireAndForgetMethod.SmartThreadPool:
if (m_ThreadPool != null)
if (m_ThreadPool == null)
m_ThreadPool = new SmartThreadPool(2000, 15, 2);
m_ThreadPool.QueueWorkItem(delegate(object o) { callback(o); return null; }, obj);
break;