diff options
Diffstat (limited to 'sequencer.h')
-rw-r--r-- | sequencer.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sequencer.h b/sequencer.h index 2088344cb3..d8a1853b29 100644 --- a/sequencer.h +++ b/sequencer.h @@ -116,10 +116,11 @@ struct todo_list { struct todo_item *items; int nr, alloc, current; int done_nr, total_nr; - struct stat_data stat; }; -#define TODO_LIST_INIT { STRBUF_INIT } +#define TODO_LIST_INIT { \ + .buf = STRBUF_INIT, \ +} int todo_list_parse_insn_buffer(struct repository *r, char *buf, struct todo_list *todo_list); |