mirror of
https://github.com/git/git.git
synced 2025-12-12 20:36:24 +01:00
commit-reach: use size_t to track indices in get_reachable_subset()
Similar as with the preceding commit, adapt `get_reachable_subset()` so that it tracks array indices via `size_t` instead of using signed integers to fix a couple of -Wsign-compare warnings. Adapt callers accordingly. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
45843d8f4e
commit
85ee0680e2
@@ -3041,7 +3041,7 @@ static void reach_filter(struct ref_array *array,
|
||||
struct commit_list **check_reachable,
|
||||
int include_reached)
|
||||
{
|
||||
int i, old_nr;
|
||||
size_t i, old_nr;
|
||||
struct commit **to_clear;
|
||||
|
||||
if (!*check_reachable)
|
||||
|
||||
Reference in New Issue
Block a user