Skip to content

Commit 250f249

Browse files
committed
sequencer.c: mark a private file-scope symbol as static
Signed-off-by: Junio C Hamano <[email protected]>
1 parent dad148c commit 250f249

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

sequencer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
#define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
1919

20-
void remove_sequencer_state(void)
20+
static void remove_sequencer_state(void)
2121
{
2222
struct strbuf seq_dir = STRBUF_INIT;
2323

sequencer.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,6 @@ struct replay_opts {
4444
struct rev_info *revs;
4545
};
4646

47-
/* Removes SEQ_DIR. */
48-
extern void remove_sequencer_state(void);
49-
5047
int sequencer_pick_revisions(struct replay_opts *opts);
5148

5249
#endif

0 commit comments

Comments
 (0)