summaryrefslogtreecommitdiff
path: root/commit-graph.h
diff options
context:
space:
mode:
authorDerrick Stolee <dstolee@microsoft.com>2019-05-17 18:41:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-06-12 18:33:54 (GMT)
commitc3a3a964b29221a9b5fa305a08037c90b9f74be0 (patch)
tree135c502dec6dcbe723304db33a67f54b2b929916 /commit-graph.h
parent238def57fe7ba219c9e50094512fff1068ac5413 (diff)
downloadgit-c3a3a964b29221a9b5fa305a08037c90b9f74be0.zip
git-c3a3a964b29221a9b5fa305a08037c90b9f74be0.tar.gz
git-c3a3a964b29221a9b5fa305a08037c90b9f74be0.tar.bz2
commit-graph: use raw_object_store when closing
The close_commit_graph() method took a repository struct, but then only uses the raw_object_store within. Change the function prototype to make the method more flexible. Signed-off-by: Derrick Stolee <dstolee@microsoft.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'commit-graph.h')
-rw-r--r--commit-graph.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/commit-graph.h b/commit-graph.h
index 01538b5..390c7f6 100644
--- a/commit-graph.h
+++ b/commit-graph.h
@@ -82,7 +82,7 @@ int write_commit_graph(const char *obj_dir,
int verify_commit_graph(struct repository *r, struct commit_graph *g);
-void close_commit_graph(struct repository *);
+void close_commit_graph(struct raw_object_store *);
void free_commit_graph(struct commit_graph *);
#endif