From 47897b4c045058df1b9f3d8e806987138e9c9533 Mon Sep 17 00:00:00 2001 From: hobbs Date: Thu, 20 Sep 2001 18:33:37 +0000 Subject: win/tclWinSock.c (SocketThread): corrected pointer cast for _WIN64. --- win/tclWinSock.c | 4 ++-- 1 file 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 -- cgit v0.12