* ecore_thread: Prevent mutex lock, thanks to Sachiel.

SVN revision: 41564
This commit is contained in:
Cedric BAIL 2009-08-03 08:19:33 +00:00
parent c3c692269a
commit e7f691a9f2
1 changed files with 1 additions and 1 deletions

View File

@ -139,7 +139,7 @@ ecore_thread_init(void)
if (_ecore_thread_init > 1) return _ecore_thread_init;
_ecore_thread_count_max = eina_cpu_count();
if (_ecore_thread_count_max < 0)
if (_ecore_thread_count_max <= 0)
_ecore_thread_count_max = 1;
ECORE_THREAD_PIPE_DEL = ecore_event_type_new();