mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-09 10:42:36 -08:00
Small typo in windows thread status detection that only affects WIN64.
This commit is contained in:
parent
2e0b4d2135
commit
bee95fc949
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue