Junio C Hamano <gits...@pobox.com> writes:

> diff --git a/attr.c b/attr.c
> index a668a63..46bde57 100644
> --- a/attr.c
> +++ b/attr.c
> @@ -387,7 +387,7 @@ static struct attr_stack *read_attr_from_index(const char 
> *path, int macro_ok)
>       char *buf, *sp;
>       int lineno = 0;
>  
> -     buf = read_blob_data_from_index_path(path, use_index);
> +     buf = read_blob_data_from_index(use_index, path);

This was wrong.

The one I'll push out will have:

        buf = read_blob_data_from_index(use_index ? use_index : &the_index, 
path);

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to