From 5004a8da14e2aa80b5697b0a3a60e594af1c8292 Mon Sep 17 00:00:00 2001 From: Ezekiel Newren Date: Tue, 18 Nov 2025 22:34:21 +0000 Subject: [PATCH] xdiff: change rindex from long to size_t in xdfile_t The field rindex describes an index offset for other arrays. Change it to size_t. Changing the type of rindex from long to size_t has no cascading refactor impact because it is only ever used to directly index other arrays. Signed-off-by: Ezekiel Newren Signed-off-by: Junio C Hamano --- xdiff/xtypes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xdiff/xtypes.h b/xdiff/xtypes.h index 1f495f987f..9074cdadd1 100644 --- a/xdiff/xtypes.h +++ b/xdiff/xtypes.h @@ -50,7 +50,7 @@ typedef struct s_xdfile { size_t nrec; ptrdiff_t dstart, dend; bool *changed; - long *rindex; + size_t *rindex; size_t nreff; } xdfile_t; -- 2.47.3