Skip to content

Commit

Permalink
sequencer.c: mark a private file-scope symbol as static
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Sep 16, 2012
1 parent dad148c commit 250f249
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
2 changes: 1 addition & 1 deletion sequencer.c
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

#define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"

void remove_sequencer_state(void)
static void remove_sequencer_state(void)
{
struct strbuf seq_dir = STRBUF_INIT;

Expand Down
3 changes: 0 additions & 3 deletions sequencer.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,6 @@ struct replay_opts {
struct rev_info *revs;
};

/* Removes SEQ_DIR. */
extern void remove_sequencer_state(void);

int sequencer_pick_revisions(struct replay_opts *opts);

#endif

0 comments on commit 250f249

Please sign in to comment.