aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Aguilar <davvid@gmail.com>2025-02-11 22:04:17 -0800
committerJunio C Hamano <gitster@pobox.com>2025-02-12 09:41:17 -0800
commit13b67f15c13d2e45215da8950f31ef27645733c3 (patch)
tree8ae3b825a8e0dd27c76d35595ae8c01b98e34d89
parentxdiff: avoid signed vs. unsigned comparisons in xhistogram.c (diff)
downloadgit-13b67f15c13d2e45215da8950f31ef27645733c3.tar.gz
git-13b67f15c13d2e45215da8950f31ef27645733c3.zip
xdiff: avoid signed vs. unsigned comparisons in xpatience.c
The loop iteration variable is non-negative and used in comparisons against a size_t value. Use size_t to eliminate the mismatch. Signed-off-by: David Aguilar <davvid@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--xdiff/xpatience.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/xdiff/xpatience.c b/xdiff/xpatience.c
index b0ba421b28..82f663004e 100644
--- a/xdiff/xpatience.c
+++ b/xdiff/xpatience.c
@@ -20,8 +20,6 @@
*
*/
-#define DISABLE_SIGN_COMPARE_WARNINGS
-
#include "xinclude.h"
/*
@@ -78,7 +76,7 @@ struct hashmap {
static int is_anchor(xpparam_t const *xpp, const char *line)
{
- int i;
+ size_t i;
for (i = 0; i < xpp->anchors_nr; i++) {
if (!strncmp(line, xpp->anchors[i], strlen(xpp->anchors[i])))
return 1;