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/tree.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/tree.h')
-rw-r--r-- | include/git2/tree.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/tree.h b/include/git2/tree.h index cb959a790..164aec9e2 100644 --- a/include/git2/tree.h +++ b/include/git2/tree.h @@ -66,7 +66,7 @@ GIT_INLINE(int) git_tree_lookup(git_tree **tree, git_repository *repo, const git GIT_INLINE(void) git_tree_close(git_tree *tree) { - return git_object_close((git_object *) tree); + git_object_close((git_object *) tree); } |