From af4ac90c4b16371e1a9932119cd9989cec8fce74 Mon Sep 17 00:00:00 2001 From: maxice8 Date: Mon, 11 Feb 2019 23:27:07 -0200 Subject: [PATCH] slcp.c: adapt to libgit2-0.28 API changes git_buf_free to git_buf_dispose --- slcp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slcp.c b/slcp.c index 6389ce9..a31f9a2 100644 --- a/slcp.c +++ b/slcp.c @@ -109,7 +109,7 @@ int main(int argc, char* argv[]) { git_repo = NULL; } - git_buf_free(&tmpgitdb); + git_buf_dispose(&tmpgitdb); /* prepare some git information */ if (git_repo) {