diff options
author | Ben Straub <bs@github.com> | 2012-11-27 13:30:04 -0800 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2012-11-27 13:30:04 -0800 |
commit | cb7ac81c4daa0bd9b1a988d614225218cf6bbc16 (patch) | |
tree | a2179fb5366ed39c47e8ffb75e97d15d53aa49a6 | |
parent | df705148ecc0d0a4c78f7a3b0903527918e38149 (diff) | |
download | libgit2-cb7ac81c4daa0bd9b1a988d614225218cf6bbc16.tar.gz |
Fix warning
-rw-r--r-- | tests-clar/refs/branches/create.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests-clar/refs/branches/create.c b/tests-clar/refs/branches/create.c index 5a43ef204..a8c4d4f51 100644 --- a/tests-clar/refs/branches/create.c +++ b/tests-clar/refs/branches/create.c @@ -18,7 +18,7 @@ void test_refs_branches_create__cleanup(void) git_reference_free(branch); branch = NULL; - git_object_free(target); + git_commit_free(target); target = NULL; git_repository_free(repo); |