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:17 +0300
committerJunio C Hamano <gitster@pobox.com>2023-01-20 00:48:17 +0300
commitf2027d26265563bcdd92b26ad72c37c8b9d51943 (patch)
tree5f3522a5a797598c2ec9641227d20fce9570f6fd
parente43ac5f23d3231f6433558931296d555592e978a (diff)
parent5c1fc48d68d78aae1a84c5b7880b7e79d3dd7c1b (diff)
Sync with maint-2.36
* maint-2.36: 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;