notes-cache.c: remove the_repository references
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
363df5572c
commit
bd7ad45b64
@ -139,8 +139,8 @@ static int pickaxe_match(struct diff_filepair *p, struct diff_options *o,
|
||||
return 0;
|
||||
|
||||
if (o->flags.allow_textconv) {
|
||||
textconv_one = get_textconv(o->repo->index, p->one);
|
||||
textconv_two = get_textconv(o->repo->index, p->two);
|
||||
textconv_one = get_textconv(o->repo, p->one);
|
||||
textconv_two = get_textconv(o->repo, p->two);
|
||||
}
|
||||
|
||||
/*
|
||||
|
Reference in New Issue
Block a user