| 114 | } |
| 115 | |
| 116 | static int process_tag(struct walker *walker, struct tag *tag) |
| 117 | { |
| 118 | if (parse_tag(the_repository, tag)) |
| 119 | return -1; |
| 120 | return process(walker, tag->tagged); |
| 121 | } |
| 122 | |
| 123 | static struct object_list *process_queue = NULL; |
| 124 | static struct object_list **process_queue_end = &process_queue; |
no test coverage detected