diff options
author | Joe Mistachkin <joe@mistachkin.com> | 2003-05-13 10:16:16 (GMT) |
---|---|---|
committer | Joe Mistachkin <joe@mistachkin.com> | 2003-05-13 10:16:16 (GMT) |
commit | 89e5a5f995907e072bff4bebc780df6ab8e4d55f (patch) | |
tree | 1f0a1e95565618ea475808d459aed5e188a41f47 /win | |
parent | abbcb0c269fc4339825f49ec99f9799d03f0340e (diff) | |
download | tcl-89e5a5f995907e072bff4bebc780df6ab8e4d55f.zip tcl-89e5a5f995907e072bff4bebc780df6ab8e4d55f.tar.gz tcl-89e5a5f995907e072bff4bebc780df6ab8e4d55f.tar.bz2 |
fix for [Bug 732477]
Diffstat (limited to 'win')
-rw-r--r-- | win/tclWinThrd.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/win/tclWinThrd.c b/win/tclWinThrd.c index 494b060..b6f7a89 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.25 2003/04/25 20:03:24 andreas_kupries Exp $ + * RCS: @(#) $Id: tclWinThrd.c,v 1.26 2003/05/13 10:16:17 mistachkin Exp $ */ #include "tclWinInt.h" @@ -187,13 +187,13 @@ Tcl_CreateThread(idPtr, proc, clientData, stackSize, flags) */ int -Tcl_JoinThread(id, result) - Tcl_ThreadId id; /* Id of the thread to wait upon */ - int* result; /* Reference to the storage the result - * of the thread we wait upon will be - * written into. */ +Tcl_JoinThread(threadId, result) + Tcl_ThreadId threadId; /* Id of the thread to wait upon */ + int* result; /* Reference to the storage the result + * of the thread we wait upon will be + * written into. */ { - return TclJoinThread (id, result); + return TclJoinThread (threadId, result); } /* |