diff options
author | Joe Mistachkin <joe@mistachkin.com> | 2015-05-17 19:46:04 (GMT) |
---|---|---|
committer | Joe Mistachkin <joe@mistachkin.com> | 2015-05-17 19:46:04 (GMT) |
commit | 797f5c18a178ccf6347e2f64c565216353e9e255 (patch) | |
tree | 15ba325e53b60fdf2d027d602c53ab8276872d4f /generic/tclThread.c | |
parent | ec8ad17e258e9758c10c5266ed7d4c4291b3a43b (diff) | |
download | tcl-797f5c18a178ccf6347e2f64c565216353e9e255.zip tcl-797f5c18a178ccf6347e2f64c565216353e9e255.tar.gz tcl-797f5c18a178ccf6347e2f64c565216353e9e255.tar.bz2 |
Fix typo in the previous check-in.
Diffstat (limited to 'generic/tclThread.c')
-rw-r--r-- | generic/tclThread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclThread.c b/generic/tclThread.c index db326ad..b46ddf5 100644 --- a/generic/tclThread.c +++ b/generic/tclThread.c @@ -314,7 +314,7 @@ Tcl_MutexUnlockAndFinalize( Tcl_MutexUnlock(&mutex); TclpFinalizeMutex(&mutex); #endif - ForgetSyncObject(&mutex, &mutexRecord); + ForgetSyncObject(mutexPtr, &mutexRecord); TclpMutexUnlock(); TclpMasterUnlock(); } |