summaryrefslogtreecommitdiff
path: root/attr.c
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 /attr.c
parent7fe9bf55b84d2610a7ac09893b25ef188f145a21 (diff)
parent012e0d76dc5b1a994ca68290f9994c5f135902a1 (diff)
Sync with maint-2.32
* maint-2.32: attr: adjust a mismatched data type
Diffstat (limited to 'attr.c')
-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;