diff options
author | Junio C Hamano <gitster@pobox.com> | 2023-01-19 13:46:04 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-01-19 13:46:04 -0800 |
commit | 25d7cb600c0e81d553ab2937f459dbc19b9e2d34 (patch) | |
tree | e421746b9d9e4c89c589435e531ff0cd754edd61 /attr.c | |
parent | 7fe9bf55b84d2610a7ac09893b25ef188f145a21 (diff) | |
parent | 012e0d76dc5b1a994ca68290f9994c5f135902a1 (diff) |
Sync with maint-2.32
* maint-2.32:
attr: adjust a mismatched data type
Diffstat (limited to 'attr.c')
-rw-r--r-- | attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |