summaryrefslogtreecommitdiffstats
path: root/win/tclWinThrd.c
diff options
context:
space:
mode:
authorericm <ericm@noemail.net>2000-06-13 20:30:22 (GMT)
committerericm <ericm@noemail.net>2000-06-13 20:30:22 (GMT)
commit363fbcc1cc55db3720944faf69bd3db500b0050b (patch)
treeb14abd2689333bd6dba627cc2ba74f5fffd63503 /win/tclWinThrd.c
parent1d49b4f22ceca616f9f7fda836bc34e9d0c48299 (diff)
downloadtcl-363fbcc1cc55db3720944faf69bd3db500b0050b.zip
tcl-363fbcc1cc55db3720944faf69bd3db500b0050b.tar.gz
tcl-363fbcc1cc55db3720944faf69bd3db500b0050b.tar.bz2
* win/tclWinDde.c:
* win/tclWinInit.c: * win/tclWinNotify.c: * win/tclWinPipe.c: * win/tclWinReg.c: * win/tclWinThrd.c: Applied patch from [Bug 5794]. FossilOrigin-Name: 84806aadbad7d0804ee022df990d7f3295efbcc0
Diffstat (limited to 'win/tclWinThrd.c')
-rw-r--r--win/tclWinThrd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/tclWinThrd.c b/win/tclWinThrd.c
index 5b84cf6..feb15fb 100644
--- a/win/tclWinThrd.c
+++ b/win/tclWinThrd.c
@@ -9,7 +9,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclWinThrd.c,v 1.10 2000/05/09 19:13:55 kupries Exp $
+ * RCS: @(#) $Id: tclWinThrd.c,v 1.11 2000/06/13 20:30:24 ericm Exp $
*/
#include "tclWinInt.h"
@@ -136,7 +136,7 @@ Tcl_CreateThread(idPtr, proc, clientData, stackSize, flags)
EnterCriticalSection(&joinLock);
- code = _beginthreadex(NULL, stackSize, proc, clientData, 0,
+ code = _beginthreadex(NULL, (unsigned) stackSize, proc, clientData, 0,
(unsigned *)idPtr);
if (code == 0) {