| 834 | } |
| 835 | |
| 836 | void clear_commit_marks(struct commit *commit, unsigned int mark) |
| 837 | { |
| 838 | struct commit_list *list = NULL; |
| 839 | |
| 840 | clear_commit_marks_1(&list, commit, mark); |
| 841 | while (list) |
| 842 | clear_commit_marks_1(&list, pop_commit(&list), mark); |
| 843 | } |
| 844 | |
| 845 | struct commit *pop_commit(struct commit_list **stack) |
| 846 | { |
no test coverage detected