aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-01-19 13:46:04 -0800
committerJunio C Hamano <gitster@pobox.com>2023-01-19 13:46:04 -0800
commit25d7cb600c0e81d553ab2937f459dbc19b9e2d34 (patch)
treee421746b9d9e4c89c589435e531ff0cd754edd61
parentGit 2.33.6 (diff)
parentSync with maint-2.31 (diff)
downloadgit-25d7cb600c0e81d553ab2937f459dbc19b9e2d34.tar.gz
git-25d7cb600c0e81d553ab2937f459dbc19b9e2d34.zip
Sync with maint-2.32
* maint-2.32: attr: adjust a mismatched data type
-rw-r--r--attr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/attr.c b/attr.c
index 7f4f11a74c..61280a5fd6 100644
--- a/attr.c
+++ b/attr.c
@@ -756,7 +756,7 @@ static struct attr_stack *read_attr_from_index(struct index_state *istate,
struct attr_stack *res;
char *buf, *sp;
int lineno = 0;
- size_t size;
+ unsigned long size;
if (!istate)
return NULL;