diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2020-03-14 19:08:19 +0100 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2020-03-14 20:12:07 +0100 |
commit | adee0adbe676692c3a4a32069d0ccef86cec3c4a (patch) | |
tree | 2614cb089a04411855f11900b96a7765d32b2620 /src/ptunnel.h | |
parent | 8823555e48209b397b0def62219f9b25243bde23 (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.h')
-rw-r--r-- | src/ptunnel.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/ptunnel.h b/src/ptunnel.h index 2fda8bc..6419eae 100644 --- a/src/ptunnel.h +++ b/src/ptunnel.h @@ -142,7 +142,12 @@ typedef struct { #endif /* function Prototypes */ -void* pt_proxy(void *args); +#ifndef WIN32 +void * pt_proxy(void *args); +#else +unsigned int __stdcall pt_proxy(void *args); +#endif + #ifdef HAVE_PCAP void pcap_packet_handler(u_char *refcon, const struct pcap_pkthdr *hdr, const u_char* pkt); |