Sync with maint-2.35

* maint-2.35:
  attr: adjust a mismatched data type
This commit is contained in:
Junio C Hamano 2023-01-19 13:48:08 -08:00
commit 5c1fc48d68

2
attr.c
View File

@ -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;