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:48:08 +0300
committerJunio C Hamano <gitster@pobox.com>2023-01-20 00:48:08 +0300
commit5c1fc48d68d78aae1a84c5b7880b7e79d3dd7c1b (patch)
treea253150c972f123a151c0384be354064eff2da19
parentad949b24f8d6ee4767c07794a2f01ada91b46b74 (diff)
parentc508c30968a54913b1c1f08fcfccd6593a74544a (diff)
Sync with maint-2.35
* maint-2.35: 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 c83f203aa8..c010bd9fa3 100644
--- a/attr.c
+++ b/attr.c
@@ -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;