| 269 | } |
| 270 | |
| 271 | static void show_parents(struct commit *commit, int abbrev, FILE *file) |
| 272 | { |
| 273 | struct commit_list *p; |
| 274 | for (p = commit->parents; p ; p = p->next) { |
| 275 | struct commit *parent = p->item; |
| 276 | fprintf(file, " %s", |
| 277 | repo_find_unique_abbrev(the_repository, &parent->object.oid, abbrev)); |
| 278 | } |
| 279 | } |
| 280 | |
| 281 | static void show_children(struct rev_info *opt, struct commit *commit, int abbrev) |
| 282 | { |
no test coverage detected