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

Fix compiler warning on Windows

parent 4e167fe7
No related branches found
No related tags found
No related merge requests found
...@@ -185,7 +185,7 @@ struct thread_s ...@@ -185,7 +185,7 @@ struct thread_s
static thread_t *thread_list; static thread_t *thread_list;
static CRITICAL_SECTION thread_lock; static CRITICAL_SECTION thread_lock;
static DWORD HandleThread(void *data) static DWORD __stdcall HandleThread(void *data)
{ {
thread_t *thread = data; thread_t *thread = data;
thread->func(thread->userdata); thread->func(thread->userdata);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment