summaryrefslogtreecommitdiff
path: root/tests/threads/thread_helpers.c
diff options
context:
space:
mode:
authorPhilip Kelley <phkelley@microsoft.com>2014-06-07 12:51:48 -0400
committerPhilip Kelley <phkelley@microsoft.com>2014-06-07 12:51:48 -0400
commitfb5917679dd1cc0ee50d1d88893c07cbcd82471f (patch)
tree595d891671995f6eec41458ecea62e90eb3f7cac /tests/threads/thread_helpers.c
parentdf192198d3ac2a2bd3d7960477e48602f648ec08 (diff)
downloadlibgit2-fb5917679dd1cc0ee50d1d88893c07cbcd82471f.tar.gz
Win32: Fix object::cache::threadmania test on x64
Diffstat (limited to 'tests/threads/thread_helpers.c')
-rw-r--r--tests/threads/thread_helpers.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/threads/thread_helpers.c b/tests/threads/thread_helpers.c
index 25370dddb..760a7bd33 100644
--- a/tests/threads/thread_helpers.c
+++ b/tests/threads/thread_helpers.c
@@ -32,7 +32,7 @@ void run_in_parallel(
#ifdef GIT_THREADS
for (t = 0; t < threads; ++t)
- cl_git_pass(git_thread_join(th[t], NULL));
+ cl_git_pass(git_thread_join(&th[t], NULL));
memset(th, 0, threads * sizeof(git_thread));
#endif