Skip to content
Snippets Groups Projects
Commit c4b076ea authored by Hanicef's avatar Hanicef
Browse files

Fix compiler warning on Windows

parent 97abc191
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment