aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/mhd_threads.c
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-14 16:09:10 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-14 16:09:10 +0300
commit83fe7b778a7fddf7454acf1f3b9afbd856ff9009 (patch)
treee12a44c3472ff4bcef3655bbcd5834d3baa7f36f /src/microhttpd/mhd_threads.c
parente4d6c07b141b0ddb989d6826e4f8344c50e1b5fa (diff)
downloadlibmicrohttpd-83fe7b778a7fddf7454acf1f3b9afbd856ff9009.tar.gz
libmicrohttpd-83fe7b778a7fddf7454acf1f3b9afbd856ff9009.zip
Fixed additional compiler warnings on W32
Diffstat (limited to 'src/microhttpd/mhd_threads.c')
-rw-r--r--src/microhttpd/mhd_threads.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/mhd_threads.c b/src/microhttpd/mhd_threads.c
index 45a10f12..628a628f 100644
--- a/src/microhttpd/mhd_threads.c
+++ b/src/microhttpd/mhd_threads.c
@@ -225,7 +225,7 @@ MHD_create_thread_ (MHD_thread_handle_ID_ *thread,
225 } 225 }
226#endif /* SIZEOF_SIZE_T != SIZEOF_UNSIGNED_INT */ 226#endif /* SIZEOF_SIZE_T != SIZEOF_UNSIGNED_INT */
227 227
228 thread->handle = (MHD_thread_handle_) 228 thread->handle = (MHD_thread_handle_) (uintptr_t)
229 _beginthreadex (NULL, 229 _beginthreadex (NULL,
230 (unsigned int) stack_size, 230 (unsigned int) stack_size,
231 start_routine, 231 start_routine,