summaryrefslogtreecommitdiff
path: root/commit.h
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2018-11-14 00:12:58 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-11-14 08:22:40 (GMT)
commit70315373ae51b45b9ca0ac43df396bb9035fe449 (patch)
treee89acff8d3af8b5e613c8a7dee5c34f3cab4e4b1 /commit.h
parent07de3fd84049c90d8d873599c43c3979f37166aa (diff)
downloadgit-70315373ae51b45b9ca0ac43df396bb9035fe449.zip
git-70315373ae51b45b9ca0ac43df396bb9035fe449.tar.gz
git-70315373ae51b45b9ca0ac43df396bb9035fe449.tar.bz2
commit: prepare repo_unuse_commit_buffer to handle any repo
Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit.h')
-rw-r--r--commit.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/commit.h b/commit.h
index 591a77a..57375e3 100644
--- a/commit.h
+++ b/commit.h
@@ -130,7 +130,12 @@ const void *repo_get_commit_buffer(struct repository *r,
* from an earlier call to get_commit_buffer. The buffer may or may not be
* freed by this call; callers should not access the memory afterwards.
*/
-void unuse_commit_buffer(const struct commit *, const void *buffer);
+void repo_unuse_commit_buffer(struct repository *r,
+ const struct commit *,
+ const void *buffer);
+#ifndef NO_THE_REPOSITORY_COMPATIBILITY_MACROS
+#define unuse_commit_buffer(c, b) repo_unuse_commit_buffer(the_repository, c, b)
+#endif
/*
* Free any cached object buffer associated with the commit.