summaryrefslogtreecommitdiffstats
path: root/generic/tclThreadTest.c
diff options
context:
space:
mode:
authorapnadkarni <apnmbx-wits@yahoo.com>2023-04-10 13:21:02 (GMT)
committerapnadkarni <apnmbx-wits@yahoo.com>2023-04-10 13:21:02 (GMT)
commit06e049afdf041c22b28d0983a91a5d38d5bf2c6e (patch)
treee8d21ef52594cbab96a307c9743605b8dc53d467 /generic/tclThreadTest.c
parentb2236891533a3b3e661914bc75bea1346351f0f1 (diff)
downloadtcl-06e049afdf041c22b28d0983a91a5d38d5bf2c6e.zip
tcl-06e049afdf041c22b28d0983a91a5d38d5bf2c6e.tar.gz
tcl-06e049afdf041c22b28d0983a91a5d38d5bf2c6e.tar.bz2
Fix compiler warnings and crashes. Builds and passes test suite on Windows and Ubuntu for 64-bit
Diffstat (limited to 'generic/tclThreadTest.c')
-rw-r--r--generic/tclThreadTest.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclThreadTest.c b/generic/tclThreadTest.c
index a5b079a..484c4e4 100644
--- a/generic/tclThreadTest.c
+++ b/generic/tclThreadTest.c
@@ -272,7 +272,8 @@ ThreadObjCmd(
}
case THREAD_CREATE: {
const char *script;
- int joinable, len;
+ int joinable;
+ Tcl_Size len;
if (objc == 2) {
/*