summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoe Mistachkin <joe@mistachkin.com>2015-05-17 19:46:04 (GMT)
committerJoe Mistachkin <joe@mistachkin.com>2015-05-17 19:46:04 (GMT)
commit797f5c18a178ccf6347e2f64c565216353e9e255 (patch)
tree15ba325e53b60fdf2d027d602c53ab8276872d4f
parentec8ad17e258e9758c10c5266ed7d4c4291b3a43b (diff)
downloadtcl-797f5c18a178ccf6347e2f64c565216353e9e255.zip
tcl-797f5c18a178ccf6347e2f64c565216353e9e255.tar.gz
tcl-797f5c18a178ccf6347e2f64c565216353e9e255.tar.bz2
Fix typo in the previous check-in.
-rw-r--r--generic/tclThread.c2
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();
}