Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-09-16 10:20:40 +0400
committerJunio C Hamano <gitster@pobox.com>2012-09-16 10:20:40 +0400
commit250f2492a408be1ed79c563f304a0d43752d032c (patch)
tree5f04829c0dd12a3e42d37009a37cce937546eb06
parentdad148c35975923c7a13058c20e01bb587ace4ef (diff)
sequencer.c: mark a private file-scope symbol as static
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r--sequencer.c2
-rw-r--r--sequencer.h3
2 files changed, 1 insertions, 4 deletions
diff --git a/sequencer.c b/sequencer.c
index f86f116a15..ce8a59f576 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -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;
diff --git a/sequencer.h b/sequencer.h
index d8494201e0..99eb7fa090 100644
--- a/sequencer.h
+++ b/sequencer.h
@@ -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