summaryrefslogtreecommitdiffstats
path: root/generic/tclThreadTest.c
diff options
context:
space:
mode:
authorpooryorick <com.digitalsmarties@pooryorick.com>2018-06-21 22:43:18 (GMT)
committerpooryorick <com.digitalsmarties@pooryorick.com>2018-06-21 22:43:18 (GMT)
commit563bd6e4ddc1fab518dc16ebd1d39d05feffa6b0 (patch)
treea09e78f3f1ed9ee8cd45ebc578d4f9adcce98158 /generic/tclThreadTest.c
parent56ca35e8a95b8cfaac73104d3699c2b901298a2d (diff)
downloadtcl-563bd6e4ddc1fab518dc16ebd1d39d05feffa6b0.zip
tcl-563bd6e4ddc1fab518dc16ebd1d39d05feffa6b0.tar.gz
tcl-563bd6e4ddc1fab518dc16ebd1d39d05feffa6b0.tar.bz2
Fix function signature of TclThreadTestFinalize.
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 3d63964..92cfa13 100644
--- a/generic/tclThreadTest.c
+++ b/generic/tclThreadTest.c
@@ -176,11 +176,12 @@ TclThread_Init(
}
-void * TclThreadTestFinalize() {
+void TclThreadTestFinalize() {
if (errorProcString != NULL) {
ckfree(errorProcString);
errorProcString= NULL;
}
+ return;
}
/*