diff options
author | Junio C Hamano <gitster@pobox.com> | 2023-01-19 13:45:37 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2023-01-19 13:45:37 -0800 |
commit | 012e0d76dc5b1a994ca68290f9994c5f135902a1 (patch) | |
tree | 4925d288d453ef57b5a49dff477f075d1b3272da /attr.c | |
parent | d96ea538e8dd0fcf381089a3b09c0a9af3617351 (diff) | |
parent | f8bf6b8f3db21d08d0ef0133b185d2b26f21d041 (diff) |
Sync with maint-2.31
* maint-2.31:
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; |