diff options
| author | Philip Kelley <phkelley@microsoft.com> | 2014-06-07 12:51:48 -0400 |
|---|---|---|
| committer | Philip Kelley <phkelley@microsoft.com> | 2014-06-07 12:51:48 -0400 |
| commit | fb5917679dd1cc0ee50d1d88893c07cbcd82471f (patch) | |
| tree | 595d891671995f6eec41458ecea62e90eb3f7cac /tests/threads/refdb.c | |
| parent | df192198d3ac2a2bd3d7960477e48602f648ec08 (diff) | |
| download | libgit2-fb5917679dd1cc0ee50d1d88893c07cbcd82471f.tar.gz | |
Win32: Fix object::cache::threadmania test on x64
Diffstat (limited to 'tests/threads/refdb.c')
| -rw-r--r-- | tests/threads/refdb.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/threads/refdb.c b/tests/threads/refdb.c index c1cd29677..94a21f259 100644 --- a/tests/threads/refdb.c +++ b/tests/threads/refdb.c @@ -84,7 +84,7 @@ void test_threads_refdb__iterator(void) #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)); } #endif @@ -215,7 +215,7 @@ void test_threads_refdb__edit_while_iterate(void) } for (t = 0; t < THREADS; ++t) { - cl_git_pass(git_thread_join(th[t], NULL)); + cl_git_pass(git_thread_join(&th[t], NULL)); } #endif } |
