Fix compiler warning on Windows

This commit is contained in:
Hanicef 2023-12-31 22:36:58 +01:00
parent 97abc19182
commit c4b076ea1b

View file

@ -185,7 +185,7 @@ struct thread_s
static thread_t *thread_list;
static CRITICAL_SECTION thread_lock;
static DWORD HandleThread(void *data)
static DWORD __stdcall HandleThread(void *data)
{
thread_t *thread = data;
thread->func(thread->userdata);