rev-list: pass "revs" to "show_bisect_vars"

instead of using static "revs" data

Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Christian Couder
2009-03-26 05:55:41 +01:00
committed by Junio C Hamano
parent 6a17fad733
commit 7428d754e2
2 changed files with 9 additions and 7 deletions

View File

@ -5,6 +5,7 @@ extern struct commit_list *find_bisection(struct commit_list *list,
int *reaches, int *all,
int find_all);
extern int show_bisect_vars(int reaches, int all, int show_all);
extern int show_bisect_vars(struct rev_info *revs, int reaches, int all,
int show_all);
#endif