Skip to content

Commit

Permalink
builtin-rev-list.c: mark file-local function static
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
gitster committed Jan 12, 2010
1 parent ebdc302 commit f1c92c6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions bisect.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ struct rev_list_info {
const char *header_prefix;
};

extern int show_bisect_vars(struct rev_list_info *info, int reaches, int all);

extern int bisect_next_all(const char *prefix);

extern int estimate_bisect_steps(int all);
Expand Down
2 changes: 1 addition & 1 deletion builtin-rev-list.c
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ static void print_var_int(const char *var, int val)
printf("%s=%d\n", var, val);
}

int show_bisect_vars(struct rev_list_info *info, int reaches, int all)
static int show_bisect_vars(struct rev_list_info *info, int reaches, int all)
{
int cnt, flags = info->bisect_show_flags;
char hex[41] = "";
Expand Down

0 comments on commit f1c92c6

Please sign in to comment.