* maint-2.37:
  attr: adjust a mismatched data type
This commit is contained in:
Junio C Hamano 2023-01-19 13:48:26 -08:00
Родитель 37ed7bf0f1 f2027d2626
Коммит b78628d426
1 изменённых файлов: 1 добавлений и 1 удалений

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