summaryrefslogtreecommitdiff
path: root/walker.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2010-12-22 14:40:17 -0800
committerLibravatar Junio C Hamano <gitster@pobox.com>2010-12-22 14:40:17 -0800
commit716958c9a23cbb4bf671dc89e094742e8ec41793 (patch)
tree46a4a67f30239622d79637ed7b0a1716ad6d5d15 /walker.c
parentMerge branch 'maint' (diff)
parentcommit: Add commit_list prefix in two function names. (diff)
downloadtgif-716958c9a23cbb4bf671dc89e094742e8ec41793.tar.xz
Merge branch 'tf/commit-list-prefix'
* tf/commit-list-prefix: commit: Add commit_list prefix in two function names. Conflicts: sha1_name.c
Diffstat (limited to 'walker.c')
-rw-r--r--walker.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/walker.c b/walker.c
index 11d9052ed8..dce7128daf 100644
--- a/walker.c
+++ b/walker.c
@@ -207,7 +207,7 @@ static int mark_complete(const char *path, const unsigned char *sha1, int flag,
struct commit *commit = lookup_commit_reference_gently(sha1, 1);
if (commit) {
commit->object.flags |= COMPLETE;
- insert_by_date(commit, &complete);
+ commit_list_insert_by_date(commit, &complete);
}
return 0;
}