diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2013-08-16 11:52:06 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-08-28 20:54:18 +0200 |
commit | e76a5fb4593b80cdc9dda66809ae910e86b6ffbe (patch) | |
tree | 3223a109e5660fb0b321992921ffaa4e18e99c2b /bisect.c | |
parent | upload-pack: delegate rev walking in shallow fetch to pack-objects (diff) | |
download | git-e76a5fb4593b80cdc9dda66809ae910e86b6ffbe.tar.xz git-e76a5fb4593b80cdc9dda66809ae910e86b6ffbe.zip |
list-objects: reduce one argument in mark_edges_uninteresting
mark_edges_uninteresting() is always called with this form
mark_edges_uninteresting(revs->commits, revs, ...);
Remove the first argument and let mark_edges_uninteresting figure that
out by itself. It helps answer the question "are this commit list and
revs related in any way?" when looking at mark_edges_uninteresting
implementation.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bisect.c')
-rw-r--r-- | bisect.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -624,7 +624,7 @@ static void bisect_common(struct rev_info *revs) if (prepare_revision_walk(revs)) die("revision walk setup failed"); if (revs->tree_objects) - mark_edges_uninteresting(revs->commits, revs, NULL); + mark_edges_uninteresting(revs, NULL); } static void exit_if_skipped_commits(struct commit_list *tried, |