diff options
author | hobbs <hobbs> | 2001-09-20 18:33:37 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2001-09-20 18:33:37 (GMT) |
commit | 47897b4c045058df1b9f3d8e806987138e9c9533 (patch) | |
tree | 7547e755dcd2e491a6d1782d74781656e71403a5 /win/tclWinSock.c | |
parent | 022c68f3b3a4b6031b0d7ddbfc4530e866c8867c (diff) | |
download | tcl-47897b4c045058df1b9f3d8e806987138e9c9533.zip tcl-47897b4c045058df1b9f3d8e806987138e9c9533.tar.gz tcl-47897b4c045058df1b9f3d8e806987138e9c9533.tar.bz2 |
win/tclWinSock.c (SocketThread): corrected pointer cast for _WIN64.
Diffstat (limited to 'win/tclWinSock.c')
-rw-r--r-- | win/tclWinSock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinSock.c b/win/tclWinSock.c index 77b68e8..42f647b 100644 --- a/win/tclWinSock.c +++ b/win/tclWinSock.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclWinSock.c,v 1.20 2001/03/31 05:44:31 hobbs Exp $ + * RCS: @(#) $Id: tclWinSock.c,v 1.21 2001/09/20 18:33:37 hobbs Exp $ */ #include "tclWinInt.h" @@ -2146,7 +2146,7 @@ SocketThread(LPVOID arg) */ #ifdef _WIN64 - SetWindowLongPtr(tsdPtr->hwnd, GWLP_USERDATA, (LONG) tsdPtr); + SetWindowLongPtr(tsdPtr->hwnd, GWLP_USERDATA, (LONG_PTR) tsdPtr); #else SetWindowLong(tsdPtr->hwnd, GWL_USERDATA, (LONG) tsdPtr); #endif |