Stephan Beyer <[email protected]> writes:
> It makes no sense that the argument for count_distance() and
> halfway() is a commit list when only its first commit is relevant.
>
> Signed-off-by: Stephan Beyer <[email protected]>
> ---
Makes sense (modulo perhaps s/elem/commit/).
> bisect.c | 16 ++++++++--------
> 1 file changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/bisect.c b/bisect.c
> index 4209c75..2c1102f 100644
> --- a/bisect.c
> +++ b/bisect.c
> @@ -38,11 +38,11 @@ static inline struct node_data *node_data(struct commit
> *elem)
> return (struct node_data *)elem->util;
> }
>
> -static int count_distance(struct commit_list *entry)
> +static int count_distance(struct commit *elem)
> {
> int nr = 0;
> struct commit_list *todo = NULL;
> - commit_list_append(entry->item, &todo);
> + commit_list_append(elem, &todo);
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html