diff options
author | Vicent Marti <tanoku@gmail.com> | 2011-03-23 15:44:52 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2011-03-23 15:44:52 +0200 |
commit | c0ffe518539073cac6b54249fa11d380ba85049c (patch) | |
tree | 4b216f7086a71c38637cea004fc3244dc8e66325 /include/git2/commit.h | |
parent | f0d08b7cec782634e550ad0cd52a705b2c87244c (diff) | |
download | libgit2-c0ffe518539073cac6b54249fa11d380ba85049c.tar.gz |
Do not return on `void` helper methods
MSVC doesn't swallow that.
Diffstat (limited to 'include/git2/commit.h')
-rw-r--r-- | include/git2/commit.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/commit.h b/include/git2/commit.h index d497324c6..c09b34843 100644 --- a/include/git2/commit.h +++ b/include/git2/commit.h @@ -67,7 +67,7 @@ GIT_INLINE(int) git_commit_lookup(git_commit **commit, git_repository *repo, con GIT_INLINE(void) git_commit_close(git_commit *commit) { - return git_object_close((git_object *) commit); + git_object_close((git_object *) commit); } /** |