On Sun, Feb 09, 2025 at 08:12:15AM +0000, Zejun Zhao wrote: > diff --git a/apply.c b/apply.c > index 72464fb6c2..585f534732 100644 > --- a/apply.c > +++ b/apply.c > @@ -2419,9 +2416,9 @@ static int line_by_line_fuzzy_match(struct image *img, > struct image *postimage, > unsigned long current, > int current_lno, > - int preimage_limit) > + size_t preimage_limit) > { > - int i; > + size_t i; > size_t imgoff = 0; > size_t preoff = 0; > size_t extra_chars; This one does more than just changing the loop counters. Probably makes sense to split out into a separate commit. Patrick