Swap the order of insert_by_date arguments so that it matches the order of commit_list_insert.
This patch anticipates a future change which will call the function via a pointer. Signed-off-by: Jon Seymour <[EMAIL PROTECTED]> --- commit.c | 8 ++++---- commit.h | 6 +++++- epoch.c | 4 ++-- rev-list.c | 2 +- 4 files changed, 12 insertions(+), 8 deletions(-) 486d4dee9772a59b955574951e8d4946b75cf9fa diff --git a/commit.c b/commit.c --- a/commit.c +++ b/commit.c @@ -147,7 +147,7 @@ void free_commit_list(struct commit_list } } -void insert_by_date(struct commit_list **list, struct commit *item) +struct commit_list * insert_by_date(struct commit *item, struct commit_list **list) { struct commit_list **pp = list; struct commit_list *p; @@ -157,7 +157,7 @@ void insert_by_date(struct commit_list * } pp = &p->next; } - commit_list_insert(item, pp); + return commit_list_insert(item, pp); } @@ -165,7 +165,7 @@ void sort_by_date(struct commit_list **l { struct commit_list *ret = NULL; while (*list) { - insert_by_date(&ret, (*list)->item); + insert_by_date((*list)->item, &ret); *list = (*list)->next; } *list = ret; @@ -186,7 +186,7 @@ struct commit *pop_most_recent_commit(st parse_commit(commit); if (!(commit->object.flags & mark)) { commit->object.flags |= mark; - insert_by_date(list, commit); + insert_by_date(commit, list); } parents = parents->next; } diff --git a/commit.h b/commit.h --- a/commit.h +++ b/commit.h @@ -44,7 +44,11 @@ enum cmit_fmt { extern enum cmit_fmt get_commit_format(const char *arg); extern unsigned long pretty_print_commit(enum cmit_fmt fmt, const char *msg, unsigned long len, char *buf, unsigned long space); -void insert_by_date(struct commit_list **list, struct commit *item); +/* + * Inserts item into the list specified in most recent commit date first order. + * A pointer to the most recently inserted item is returned. + */ +struct commit_list * insert_by_date(struct commit *item, struct commit_list **list); /** Removes the first commit from a list sorted by date, and adds all * of its parents. diff --git a/epoch.c b/epoch.c --- a/epoch.c +++ b/epoch.c @@ -255,11 +255,11 @@ static int find_base_for_list(struct com if (!parent_node) { parent_node = new_mass_counter(parent, &distribution); - insert_by_date(&pending, parent); + insert_by_date(parent, &pending); commit_list_insert(parent, &cleaner); } else { if (!compare(&parent_node->pending, get_zero())) - insert_by_date(&pending, parent); + insert_by_date(parent, &pending); add(&parent_node->pending, &parent_node->pending, &distribution); } } diff --git a/rev-list.c b/rev-list.c --- a/rev-list.c +++ b/rev-list.c @@ -483,7 +483,7 @@ int main(int argc, char **argv) if (!commit) continue; if (!merge_order) - insert_by_date(&list, commit); + insert_by_date(commit, &list); else commit_list_insert(commit, &list); } ------------ - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html