summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2015-02-05 09:18:47 -0500
committerEdward Thomson <ethomson@edwardthomson.com>2015-02-05 09:18:47 -0500
commit3dc92940c8606b55c1ed35552ab6fa3b113dd2bd (patch)
tree8077ebf03ba2e29fbe58d0159ff94bc51bdc391f
parent3983935b0f7d5ece65bb8c6532af2f7ed27a197a (diff)
parent2107dac34624421015c3a633975bde0ff797ba53 (diff)
downloadlibgit2-3dc92940c8606b55c1ed35552ab6fa3b113dd2bd.tar.gz
Merge pull request #2875 from JIghtuse/master
for-each-ref example: initialize libgit2 in main
-rw-r--r--examples/for-each-ref.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/for-each-ref.c b/examples/for-each-ref.c
index d6846bb0d..a8ceaaff9 100644
--- a/examples/for-each-ref.c
+++ b/examples/for-each-ref.c
@@ -34,6 +34,7 @@ static int show_ref(git_reference *ref, void *data)
int main(int argc, char **argv)
{
git_repository *repo;
+ git_libgit2_init();
if (argc != 1 || argv[1] /* silence -Wunused-parameter */)
fatal("Sorry, no for-each-ref options supported yet", NULL);
@@ -42,5 +43,7 @@ int main(int argc, char **argv)
"Could not open repository", NULL);
check_lg2(git_reference_foreach(repo, show_ref, repo),
"Could not iterate over references", NULL);
+
+ git_libgit2_shutdown();
return 0;
}