From 45e79e37012ffec58c754000c23077ecac2da753 Mon Sep 17 00:00:00 2001 From: Vicent Marti Date: Sat, 26 Nov 2011 04:59:21 +0100 Subject: Rename all `_close` methods There's no difference between `_free` and `_close` semantics: keep everything with the same name to avoid confusions. --- include/git2/commit.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/git2/commit.h') diff --git a/include/git2/commit.h b/include/git2/commit.h index 3c90e8007..4e91b34b9 100644 --- a/include/git2/commit.h +++ b/include/git2/commit.h @@ -56,7 +56,7 @@ GIT_INLINE(int) git_commit_lookup_prefix(git_commit **commit, git_repository *re /** * Close an open commit * - * This is a wrapper around git_object_close() + * This is a wrapper around git_object_free() * * IMPORTANT: * It *is* necessary to call this method when you stop @@ -65,9 +65,9 @@ GIT_INLINE(int) git_commit_lookup_prefix(git_commit **commit, git_repository *re * @param commit the commit to close */ -GIT_INLINE(void) git_commit_close(git_commit *commit) +GIT_INLINE(void) git_commit_free(git_commit *commit) { - git_object_close((git_object *) commit); + git_object_free((git_object *) commit); } /** -- cgit v1.2.1