aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-01-19 13:48:26 -0800
committerJunio C Hamano <gitster@pobox.com>2023-01-19 13:48:26 -0800
commitb78628d4264163fc276a24ce3eeeee47382ea268 (patch)
treee8573312743120d55273ef17524c66f9070a3b65
parentGit 2.38.3 (diff)
parentSync with maint-2.36 (diff)
downloadgit-b78628d4264163fc276a24ce3eeeee47382ea268.tar.gz
git-b78628d4264163fc276a24ce3eeeee47382ea268.zip
Sync with maint-2.37
* maint-2.37: 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 b43e93ee96..9922529b58 100644
--- a/attr.c
+++ b/attr.c
@@ -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;