sequencer.c: mark a private file-scope symbol as static
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
@ -17,7 +17,7 @@
|
|||||||
|
|
||||||
#define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
|
#define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
|
||||||
|
|
||||||
void remove_sequencer_state(void)
|
static void remove_sequencer_state(void)
|
||||||
{
|
{
|
||||||
struct strbuf seq_dir = STRBUF_INIT;
|
struct strbuf seq_dir = STRBUF_INIT;
|
||||||
|
|
||||||
|
|||||||
@ -44,9 +44,6 @@ struct replay_opts {
|
|||||||
struct rev_info *revs;
|
struct rev_info *revs;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* Removes SEQ_DIR. */
|
|
||||||
extern void remove_sequencer_state(void);
|
|
||||||
|
|
||||||
int sequencer_pick_revisions(struct replay_opts *opts);
|
int sequencer_pick_revisions(struct replay_opts *opts);
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user