Small typo in windows thread status detection that only affects WIN64.

This commit is contained in:
Juan Jose Garcia Ripoll 2010-08-23 12:54:28 +02:00
parent 2e0b4d2135
commit bee95fc949

View file

@ -405,7 +405,7 @@ mp_process_enable(cl_object process)
DWORD threadId;
code = (HANDLE)CreateThread(NULL, 0, thread_entry_point, process, 0, &threadId);
ok = (process->process.thread = code);
ok = (process->process.thread = code) != NULL;
}
#else
{