Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-01-20 00:45:23 +0300
committerJunio C Hamano <gitster@pobox.com>2023-01-20 00:45:23 +0300
commitf8bf6b8f3db21d08d0ef0133b185d2b26f21d041 (patch)
tree0b5fa32c5abde98f07215a6d12d8f52ca18c0083
parent82689d5e5d3f41da2ab1fbf9fbe7aacfd6da74c1 (diff)
parent0227130244c007870c106fc613903d078730e45c (diff)
Sync with maint-2.30
* maint-2.30: attr: adjust a mismatched data type
-rw-r--r--attr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/attr.c b/attr.c
index f826ba21de..80bf39edec 100644
--- a/attr.c
+++ b/attr.c
@@ -745,7 +745,7 @@ static struct attr_stack *read_attr_from_index(const struct index_state *istate,
struct attr_stack *res;
char *buf, *sp;
int lineno = 0;
- size_t size;
+ unsigned long size;
if (!istate)
return NULL;