Skip to content

Commit 7305f8d

Browse files
committed
sequencer.h fix placement of #endif
Commit 6585068 ("rebase -i: rewrite write_basic_state() in C", 2018-08-28) accidentially added new function declarations after the #endif at the end of the include guard. Signed-off-by: Phillip Wood <[email protected]>
1 parent b0a3186 commit 7305f8d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

sequencer.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -195,11 +195,10 @@ void print_commit_summary(struct repository *repo,
195195

196196
int read_author_script(const char *path, char **name, char **email, char **date,
197197
int allow_missing);
198-
#endif
199-
200198
void parse_strategy_opts(struct replay_opts *opts, char *raw_opts);
201199
int write_basic_state(struct replay_opts *opts, const char *head_name,
202200
struct commit *onto, const char *orig_head);
203201
void sequencer_post_commit_cleanup(struct repository *r);
204202
int sequencer_get_last_command(struct repository* r,
205203
enum replay_action *action);
204+
#endif /* SEQUENCER_H */

0 commit comments

Comments
 (0)