Miriam Rubio <mirucam@xxxxxxxxx> writes: > @@ -856,6 +858,81 @@ static int bisect_autostart(struct bisect_terms *terms) > > return res; > } > + int mark_for_removal(const char *refname, const struct object_id *oid, > + int flag, void *cb_data) > +{ > + struct string_list *refs = cb_data; > + char *ref = xstrfmt("refs/bisect%s", refname); > + string_list_append(refs, ref); > + return 0; > +} Funny indentation at the beginning, and worse yet, triggers an error with -Werror=missing-prototypes. What is the relationship between this one and the similarly-named on in bisect.c?