diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2009-04-19 11:55:38 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-05-10 00:30:28 -0700 |
commit | 1c876546bda5dde35d4ae887ad6d24ed16ec953a (patch) | |
tree | 1f64c61206188cd288c5b128c42fde94540da7cb | |
parent | f01f1099f40f24fe6f7802185340a6fa3a3d4f35 (diff) | |
download | git-1c876546bda5dde35d4ae887ad6d24ed16ec953a.tar.gz git-1c876546bda5dde35d4ae887ad6d24ed16ec953a.tar.xz |
rev-list: make "estimate_bisect_steps" non static
Because it will be used from "bisect.c" too.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | bisect.h | 2 | ||||
-rw-r--r-- | builtin-rev-list.c | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -26,4 +26,6 @@ extern int show_bisect_vars(struct rev_list_info *info, int reaches, int all); extern int bisect_next_vars(const char *prefix); +extern int estimate_bisect_steps(int all); + #endif diff --git a/builtin-rev-list.c b/builtin-rev-list.c index 38a8f234d..4c5f5eec0 100644 --- a/builtin-rev-list.c +++ b/builtin-rev-list.c @@ -211,7 +211,7 @@ static inline int exp2i(int n) * * and P(2^n + x) < 0.5 means 2^n < 3x */ -static int estimate_bisect_steps(int all) +int estimate_bisect_steps(int all) { int n, x, e; |