diff options
| author | Junio C Hamano <gitster@pobox.com> | 2023-01-19 13:48:26 -0800 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2023-01-19 13:48:26 -0800 |
| commit | b78628d4264163fc276a24ce3eeeee47382ea268 (patch) | |
| tree | e8573312743120d55273ef17524c66f9070a3b65 | |
| parent | Git 2.38.3 (diff) | |
| parent | Sync with maint-2.36 (diff) | |
| download | git-b78628d4264163fc276a24ce3eeeee47382ea268.tar.gz git-b78628d4264163fc276a24ce3eeeee47382ea268.zip | |
Sync with maint-2.37
* maint-2.37:
attr: adjust a mismatched data type
| -rw-r--r-- | attr.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -752,7 +752,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; |
