fix windows compilation warning

This commit is contained in:
Ryozuki 2018-10-01 19:23:33 +02:00
parent 7fefcb58b2
commit 8e8e46a26a

View file

@ -673,7 +673,7 @@ struct THREAD_RUN
#if defined(CONF_FAMILY_UNIX)
static void *thread_run(void *user)
#elif defined(CONF_FAMILY_WINDOWS)
static unsigned int __stdcall thread_run(void *user)
static unsigned long __stdcall thread_run(void *user)
#else
#error not implemented
#endif