diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-01-19 13:48:08 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-01-19 13:48:08 -0800 |
| commit | 5c1fc48d68d78aae1a84c5b7880b7e79d3dd7c1b (patch) | |
| tree | a253150c972f123a151c0384be354064eff2da19 | |
| parent | ad949b24f8d6ee4767c07794a2f01ada91b46b74 (diff) | |
| parent | c508c30968a54913b1c1f08fcfccd6593a74544a (diff) | |
| download | git-5c1fc48d68d78aae1a84c5b7880b7e79d3dd7c1b.tar.gz | |
Sync with maint-2.35
* maint-2.35:
attr: adjust a mismatched data type
| -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; |
