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 /src/pack-objects.c | |
parent | df192198d3ac2a2bd3d7960477e48602f648ec08 (diff) | |
download | libgit2-fb5917679dd1cc0ee50d1d88893c07cbcd82471f.tar.gz |
Win32: Fix object::cache::threadmania test on x64
Diffstat (limited to 'src/pack-objects.c')
-rw-r--r-- | src/pack-objects.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pack-objects.c b/src/pack-objects.c index 3d3330ae8..0040a826b 100644 --- a/src/pack-objects.c +++ b/src/pack-objects.c @@ -1209,7 +1209,7 @@ static int ll_find_deltas(git_packbuilder *pb, git_pobject **list, git_mutex_unlock(&target->mutex); if (!sub_size) { - git_thread_join(target->thread, NULL); + git_thread_join(&target->thread, NULL); git_cond_free(&target->cond); git_mutex_free(&target->mutex); active_threads--; |