diff options
| author | Vicent Marti <tanoku@gmail.com> | 2011-03-16 01:07:06 +0200 |
|---|---|---|
| committer | Vicent Marti <tanoku@gmail.com> | 2011-03-16 01:07:06 +0200 |
| commit | 54a1b36c257a490f13a26d92d4c8e5e3912d00cd (patch) | |
| tree | 88ac80766863f1102226496cb7ae47fc09fa867d /include | |
| parent | 955f9ae9bd25ceb59775463e04c0276209387b67 (diff) | |
| download | libgit2-54a1b36c257a490f13a26d92d4c8e5e3912d00cd.tar.gz | |
Export `git_repository_gc` properly
One of my brainfarts made me export it as `git_repository_close` instead
of GC. Duh.
Diffstat (limited to 'include')
| -rw-r--r-- | include/git2/repository.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/repository.h b/include/git2/repository.h index d5f6cf501..5eff53b29 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. |
