diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2009-03-26 05:55:41 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-03-30 01:22:54 -0700 |
commit | 7428d754e2dec9e82253d1e02b4df20fab3f3384 (patch) | |
tree | 2ebb2e14b34e6e0df883def007b47618bc334399 /bisect.h | |
parent | 6a17fad73369173ca71d3adf0d4335a0c8137cb9 (diff) | |
download | git-7428d754e2dec9e82253d1e02b4df20fab3f3384.tar.gz |
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>
Diffstat (limited to 'bisect.h')
-rw-r--r-- | bisect.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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 |