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 | Git 2.36.4 (diff) | |
| parent | Sync with maint-2.34 (diff) | |
| download | git-5c1fc48d68d78aae1a84c5b7880b7e79d3dd7c1b.tar.gz git-5c1fc48d68d78aae1a84c5b7880b7e79d3dd7c1b.zip | |
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; |
