mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2025-02-16 09:02:06 +00:00
Fix compiler warning on Windows
This commit is contained in:
parent
97abc19182
commit
c4b076ea1b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue