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 | |
| parent | Git 2.33.6 (diff) | |
| parent | Sync with maint-2.31 (diff) | |
| download | git-25d7cb600c0e81d553ab2937f459dbc19b9e2d34.tar.gz git-25d7cb600c0e81d553ab2937f459dbc19b9e2d34.zip | |
Sync with maint-2.32
* maint-2.32:
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; |
