Commit 54a1b36c257a490f13a26d92d4c8e5e3912d00cd

Vicent Marti 2011-03-16T01:07:06

Export `git_repository_gc` properly One of my brainfarts made me export it as `git_repository_close` instead of GC. Duh.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/include/git2/repository.h b/include/git2/repository.h
index d5f6cf5..5eff53b 100644
--- a/include/git2/repository.h
+++ b/include/git2/repository.h
@@ -167,7 +167,7 @@ GIT_EXTERN(void) git_repository_free(git_repository *repo);
  *
  * @param repo repository handle to collect. If NULL nothing occurs.
  */
-GIT_EXTERN(void) git_repository_close(git_repository *repo);
+GIT_EXTERN(void) git_repository_gc(git_repository *repo);
 
 /**
  * Creates a new Git repository in the given folder.