]> git.ipfire.org Git - thirdparty/git.git/commit - midx.c
midx.c: remove unnecessary loop condition
authorTaylor Blau <me@ttaylorr.com>
Tue, 20 Sep 2022 01:55:53 +0000 (21:55 -0400)
committerJunio C Hamano <gitster@pobox.com>
Wed, 21 Sep 2022 17:21:47 +0000 (10:21 -0700)
commit0a8e5614924abaac17008aea3cef2ee8fa25f26a
tree5d0a5d240965d8da43e45f160d8d6fcde98df8b6
parentcb6c48cbbc7e196739b42c16c84fa320cc82b5c4
midx.c: remove unnecessary loop condition

The fill_included_packs_batch() routine is responsible for aggregating
objects in packs with a non-zero value for the `--batch-size` option of
the `git multi-pack-index repack` sub-command.

Since this routine is explicitly called only when `--batch-size` is
non-zero, there is no point in checking that this is the case in our
loop condition.

Remove the unnecessary part of this condition to avoid confusion.

Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
midx.c