mirror of
https://github.com/libretro/RetroArch.git
synced 2024-11-23 16:09:47 +00:00
use DWORD to avoid type mismatch
This commit is contained in:
parent
6f572654a2
commit
7d3330da74
@ -160,7 +160,7 @@ sthread_t *sthread_create(void (*thread_func)(void*), void *userdata)
|
||||
struct thread_data *data = NULL;
|
||||
sthread_t *thread = (sthread_t*)calloc(1, sizeof(*thread));
|
||||
#if defined(_WIN32_WINNT) && _WIN32_WINNT <= 0x0410
|
||||
uint32_t thread_id = 0;
|
||||
DWORD thread_id = 0;
|
||||
#endif
|
||||
if (!thread)
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user