Am 19.09.19 um 23:46 schrieb SZEDER Gábor:
> Casting a 'struct object' to 'struct commit' is unnecessary there,
> because it's already available in the local 'commit' variable.

That's true, but you can't see that only by reading your email.

>
> Signed-off-by: SZEDER Gábor <szeder....@gmail.com>
> ---
>  builtin/name-rev.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/builtin/name-rev.c b/builtin/name-rev.c
> index d345456656..e406ff8e17 100644
> --- a/builtin/name-rev.c
> +++ b/builtin/name-rev.c
> @@ -268,7 +268,7 @@ static int name_ref(const char *path, const struct 
> object_id *oid, int flags, vo

Here's the pertinent context line; --function-context would have been too
much, I think, but -U4 would have shown it:

                struct commit *commit = (struct commit *)o;
>               int from_tag = starts_with(path, "refs/tags/");
>
>               if (taggerdate == TIME_MAX)
> -                     taggerdate = ((struct commit *)o)->date;
> +                     taggerdate = commit->date;
>               path = name_ref_abbrev(path, can_abbreviate_output);
>               name_rev(commit, xstrdup(path), taggerdate, 0, 0,
>                        from_tag, deref);
>

Reply via email to