diff options
author | Joe Mistachkin <joe@mistachkin.com> | 2003-05-13 09:57:38 (GMT) |
---|---|---|
committer | Joe Mistachkin <joe@mistachkin.com> | 2003-05-13 09:57:38 (GMT) |
commit | f0fa516e8acb173ee13c8239a987c58d03460948 (patch) | |
tree | 916fee9988e480bc11268aa83cd81b06c59ed51d /mac | |
parent | 9f7a6186e4948e296a85aedcfc8e4673236ab12e (diff) | |
download | tcl-f0fa516e8acb173ee13c8239a987c58d03460948.zip tcl-f0fa516e8acb173ee13c8239a987c58d03460948.tar.gz tcl-f0fa516e8acb173ee13c8239a987c58d03460948.tar.bz2 |
fix for [Bug 732477]
Diffstat (limited to 'mac')
-rw-r--r-- | mac/tclMacThrd.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/mac/tclMacThrd.c b/mac/tclMacThrd.c index 3fdafe3..dec4842 100644 --- a/mac/tclMacThrd.c +++ b/mac/tclMacThrd.c @@ -168,17 +168,17 @@ 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. */ { if (!TclMacHaveThreads()) { return TCL_ERROR; } - return TclJoinThread (id, result); + return TclJoinThread (threadId, result); } /* |