diff options
author | Derrick Stolee <dstolee@microsoft.com> | 2019-05-17 11:41:47 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-06-12 11:33:54 -0700 |
commit | c3a3a964b29221a9b5fa305a08037c90b9f74be0 (patch) | |
tree | 135c502dec6dcbe723304db33a67f54b2b929916 /commit-graph.h | |
parent | 238def57fe7ba219c9e50094512fff1068ac5413 (diff) | |
download | git-c3a3a964b29221a9b5fa305a08037c90b9f74be0.tar.gz |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/commit-graph.h b/commit-graph.h index 01538b5cf5..390c7f6961 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 |