]> git.ipfire.org Git - thirdparty/git.git/commit
builtin/remote: fix sign comparison warnings
authorPatrick Steinhardt <ps@pks.im>
Thu, 31 Jul 2025 14:56:51 +0000 (16:56 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 6 Aug 2025 21:19:30 +0000 (14:19 -0700)
commit376d7f1a11a52bc3f2f4ce74557536ac2195ce5f
treef06bb3f050956504971936b0f11c9bfea5d503ad
parent2f530e5d0ac9349ad5884a7d74a60762e4ee05f8
builtin/remote: fix sign comparison warnings

Fix -Wsign-comparison warnings. All of the warnings we have are about
mismatches in signedness for loop counters. These are trivially fixable
by using the correct integer type.

Signed-off-by: Patrick Steinhardt <ps@pks.im>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/remote.c