X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=builtin-rev-list.c;h=ac551d59f3f6cb209a645ad708c46e4e88791295;hb=5433235daec11550973f1e290f069ce0c27f53ab;hp=86db8b03fe4295497cf011a75617d6dc8f172c64;hpb=e2b1accc59ab5d682d71fd801ebe959c3e871488;p=git.git diff --git a/builtin-rev-list.c b/builtin-rev-list.c index 86db8b03f..ac551d59f 100644 --- a/builtin-rev-list.c +++ b/builtin-rev-list.c @@ -70,21 +70,9 @@ static void show_commit(struct commit *commit) if (revs.parents) { struct commit_list *parents = commit->parents; while (parents) { - struct object *o = &(parents->item->object); + printf(" %s", sha1_to_hex(parents->item->object.sha1)); parents = parents->next; - if (o->flags & TMP_MARK) - continue; - printf(" %s", sha1_to_hex(o->sha1)); - o->flags |= TMP_MARK; } - /* TMP_MARK is a general purpose flag that can - * be used locally, but the user should clean - * things up after it is done with them. - */ - for (parents = commit->parents; - parents; - parents = parents->next) - parents->item->object.flags &= ~TMP_MARK; } if (revs.commit_format == CMIT_FMT_ONELINE) putchar(' '); @@ -312,7 +300,7 @@ static struct commit_list *find_bisection(struct commit_list *list, show_list("bisection 2 sorted", 0, nr, list); *all = nr; - weights = xcalloc(on_list, sizeof(int*)); + weights = xcalloc(on_list, sizeof(*weights)); counted = 0; for (n = 0, p = list; p; p = p->next) {