diff options
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/threads/tthreadheapviolation1.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/threads/tthreadheapviolation1.nim b/tests/threads/tthreadheapviolation1.nim index cd35a44ca..7ca6f7928 100755 --- a/tests/threads/tthreadheapviolation1.nim +++ b/tests/threads/tthreadheapviolation1.nim @@ -14,7 +14,7 @@ proc horrible() {.thread.} = var mydata = (x, "my string too") echo global -createThread(t, horrible) +createThread[void](t, horrible) joinThread(t) |