1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-05-14 02:16:09 +02:00

Merge branch 'ds/reachable'

Trivial bugfix.

* ds/reachable:
  commit-reach: fix cast in compare_commits_by_gen()
This commit is contained in:
Junio C Hamano 2018-10-30 15:43:47 +09:00
commit f2d1c83df0

View File

@ -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;