From: Jonathan Nieder <jrnieder@xxxxxxxxx> Add a repository argument to allow the rearrange_packed_git caller to be more specific about which repository to handle. This is a small mechanical change; it doesn't change the implementation to handle repositories other than the_repository yet. As with the previous commits, use a macro to catch callers passing a repository other than the_repository at compile time. Signed-off-by: Stefan Beller <sbeller@xxxxxxxxxx> Signed-off-by: Jonathan Nieder <jrnieder@xxxxxxxxx> --- packfile.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packfile.c b/packfile.c index 58473660cd..52cf9182c4 100644 --- a/packfile.c +++ b/packfile.c @@ -857,7 +857,8 @@ static int sort_pack(const void *a_, const void *b_) return -1; } -static void rearrange_packed_git(void) +#define rearrange_packed_git(r) rearrange_packed_git_##r() +static void rearrange_packed_git_the_repository(void) { the_repository->objects.packed_git = llist_mergesort( the_repository->objects.packed_git, get_next_packed_git, @@ -883,7 +884,7 @@ void prepare_packed_git(void) prepare_alt_odb(the_repository); for (alt = the_repository->objects.alt_odb_list; alt; alt = alt->next) prepare_packed_git_one(the_repository, alt->path, 0); - rearrange_packed_git(); + rearrange_packed_git(the_repository); prepare_packed_git_mru(); the_repository->objects.packed_git_initialized = 1; } -- 2.15.1.433.g936d1b9894.dirty