diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-10-30 15:43:47 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-30 15:43:47 +0900 |
commit | f2d1c83df05e30d7588ba3c28b994d6ebbdbc9b0 (patch) | |
tree | 5193d8f738c7093574ead17044f185495bfbbbd3 /commit-reach.c | |
parent | 4c7f5440225aba8f0c7253575e5ffa933a267de7 (diff) | |
parent | 8628ace2691510dc856e2a9c735706fa8f0620e1 (diff) | |
download | git-f2d1c83df05e30d7588ba3c28b994d6ebbdbc9b0.tar.gz |
Merge branch 'ds/reachable'
Trivial bugfix.
* ds/reachable:
commit-reach: fix cast in compare_commits_by_gen()
Diffstat (limited to 'commit-reach.c')
-rw-r--r-- | commit-reach.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commit-reach.c b/commit-reach.c index 79419be8af..a9da65c462 100644 --- a/commit-reach.c +++ b/commit-reach.c @@ -529,8 +529,8 @@ int commit_contains(struct ref_filter *filter, struct commit *commit, static int compare_commits_by_gen(const void *_a, const void *_b) { - const struct commit *a = (const struct commit *)_a; - const struct commit *b = (const struct commit *)_b; + const struct commit *a = *(const struct commit * const *)_a; + const struct commit *b = *(const struct commit * const *)_b; if (a->generation < b->generation) return -1; |