Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2013-01-11 23:15:06 +0400
committerCarlos Martín Nieto <cmn@dwim.me>2013-01-11 23:17:21 +0400
commit80d647adc31e3c8721dc578140494f916463f623 (patch)
tree35f53ad25a93c3644b0d08622944462193cb5ec6 /src/odb_pack.c
parent3f4437e714874ed10ce20fb32ca2dad3ca6f80ee (diff)
Revert "pack: packfile_free -> git_packfile_free and use it in the indexers"
This reverts commit f289f886cb81bb570bed747053d5ebf8aba6bef7, which makes the tests fail on Windows. Revert until we can figure out a solution.
Diffstat (limited to 'src/odb_pack.c')
-rw-r--r--src/odb_pack.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/odb_pack.c b/src/odb_pack.c
index 9779ecd25..9d0c4c0e7 100644
--- a/src/odb_pack.c
+++ b/src/odb_pack.c
@@ -538,7 +538,7 @@ static void pack_backend__free(git_odb_backend *_backend)
for (i = 0; i < backend->packs.length; ++i) {
struct git_pack_file *p = git_vector_get(&backend->packs, i);
- git_packfile_free(p);
+ packfile_free(p);
}
git_vector_free(&backend->packs);