libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit 580814314f09b8e73f7641264998320a9694a459
parent 76bb5944a53a6710a4c222fdabf2668a2644ee44
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Fri, 15 Sep 2023 18:54:55 +0300

test_shutdown_select: muted compiler warninig

Diffstat:
Msrc/microhttpd/test_shutdown_select.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/microhttpd/test_shutdown_select.c b/src/microhttpd/test_shutdown_select.c @@ -338,8 +338,8 @@ main (int argc, char *const *argv) return 99; } #elif defined(MHD_USE_W32_THREADS) - sel_thrd = (HANDLE) _beginthreadex (NULL, 0, test_func, &listen_socket, 0, - NULL); + sel_thrd = (HANDLE) (uintptr_t) + _beginthreadex (NULL, 0, test_func, &listen_socket, 0, NULL); if (0 == (sel_thrd)) { MHD_socket_close_chk_ (listen_socket);