From: Nguyễn Thái Ngọc Duy Date: Sat, 10 Nov 2018 05:49:05 +0000 (+0100) Subject: line-log.c: remove the_repository reference X-Git-Tag: v2.21.0-rc0~131^2~5 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/363df5572c3068d294d66c61025b377712e957c9 line-log.c: remove the_repository reference Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/line-log.c b/line-log.c index d1d429d738..24e21731c4 100644 --- a/line-log.c +++ b/line-log.c @@ -479,7 +479,7 @@ static struct commit *check_single_commit(struct rev_info *revs) struct object *obj = revs->pending.objects[i].item; if (obj->flags & UNINTERESTING) continue; - obj = deref_tag(the_repository, obj, NULL, 0); + obj = deref_tag(revs->repo, obj, NULL, 0); if (obj->type != OBJ_COMMIT) die("Non commit %s?", revs->pending.objects[i].name); if (commit)