summaryrefslogtreecommitdiff
path: root/attr.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-01-19 13:47:42 -0800
committerJunio C Hamano <gitster@pobox.com>2023-01-19 13:47:42 -0800
commitf39fe8fcb269e0b7ec48f2ea57fcb879908ac447 (patch)
tree8b3ace8a9fb0da260fb5b97642ba762f4a2dfe28 /attr.c
parent6c9466944c90c236217ec6f9ce5ed6b0e73903f9 (diff)
parent25d7cb600c0e81d553ab2937f459dbc19b9e2d34 (diff)
Sync with maint-2.33
* maint-2.33: 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 a658e35a58..d5f269167b 100644
--- a/attr.c
+++ b/attr.c
@@ -757,7 +757,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;