Merge pull request #1311 from Ryozuki/master

Fix windows compilation warning
This commit is contained in:
Dennis Felsing 2018-10-01 20:24:00 +02:00 committed by GitHub
commit b7e75e8d3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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