diff options
author | Taylor Blau <me@ttaylorr.com> | 2020-09-09 11:22:56 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-09-09 12:51:48 -0700 |
commit | ab14d0676c58389e6f0ccbb9569b07045a05b6df (patch) | |
tree | e2713ff04c0f12ded3be1fecd1f5a9c59c74b18e /builtin/commit-graph.c | |
parent | t4216: use an '&&'-chain (diff) | |
download | tgif-ab14d0676c58389e6f0ccbb9569b07045a05b6df.tar.xz |
commit-graph: pass a 'struct repository *' in more places
In a future commit, some commit-graph internals will want access to
'r->settings', but we only have the 'struct object_directory *'
corresponding to that repository.
Add an additional parameter to pass the repository around in more
places.
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/commit-graph.c')
-rw-r--r-- | builtin/commit-graph.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/commit-graph.c b/builtin/commit-graph.c index 523501f217..ba5584463f 100644 --- a/builtin/commit-graph.c +++ b/builtin/commit-graph.c @@ -106,7 +106,7 @@ static int graph_verify(int argc, const char **argv) FREE_AND_NULL(graph_name); if (open_ok) - graph = load_commit_graph_one_fd_st(fd, &st, odb); + graph = load_commit_graph_one_fd_st(the_repository, fd, &st, odb); else graph = read_commit_graph_one(the_repository, odb); |