aboutsummaryrefslogtreecommitdiff
path: root/src/ptunnel.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2020-03-14 19:08:19 +0100
committerToni Uhlig <matzeton@googlemail.com>2020-03-14 20:12:07 +0100
commitadee0adbe676692c3a4a32069d0ccef86cec3c4a (patch)
tree2614cb089a04411855f11900b96a7765d32b2620 /src/ptunnel.c
parent8823555e48209b397b0def62219f9b25243bde23 (diff)
fixed mingw build caused by an invalid explicit function type cast
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/ptunnel.c')
-rw-r--r--src/ptunnel.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/ptunnel.c b/src/ptunnel.c
index 5feb34a..0a4ab38 100644
--- a/src/ptunnel.c
+++ b/src/ptunnel.c
@@ -375,7 +375,7 @@ void pt_forwarder(void) {
#ifndef WIN32
if (pthread_create(&pid, 0, pt_proxy, 0) != 0)
#else
- if (0 == (pid = _beginthreadex(0, 0, (unsigned int (__stdcall *)(void *))pt_proxy, 0, 0, 0)))
+ if (0 == (pid = _beginthreadex(0, 0, pt_proxy, 0, 0, 0)))
#endif
{
pt_log(kLog_error, "Couldn't create thread! Dropping incoming connection.\n");
@@ -427,7 +427,12 @@ int pt_create_udp_socket(int port) {
/* pt_proxy: This function does all the client and proxy stuff.
*/
-void* pt_proxy(void *args) {
+#ifndef WIN32
+void * pt_proxy(void *args)
+#else
+unsigned int __stdcall pt_proxy(void *args)
+#endif
+{
(void) args;
fd_set set;