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:00 +0300
committerJunio C Hamano <gitster@pobox.com>2023-01-20 00:48:00 +0300
commitc508c30968a54913b1c1f08fcfccd6593a74544a (patch)
tree4613f61840bb06e11558620ab2c39cd168b88a3d
parent02f498172348f7ba9dceb169305b74c7eca7a38d (diff)
parentf39fe8fcb269e0b7ec48f2ea57fcb879908ac447 (diff)
Sync with maint-2.34
* maint-2.34: 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 a658e35a58..d5f269167b 100644
--- a/attr.c
+++ b/attr.c
@@ -757,7 +757,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;