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>2019-02-14 05:18:41 +0300
committerJunio C Hamano <gitster@pobox.com>2019-02-14 05:18:41 +0300
commit8ac5444cba9349a5f89e64e1774ea9d6740a5add (patch)
tree2c3a2266d018b43b709f296b4be7d2a858dac495 /sequencer.c
parente9bd4aa026178caeed76ca00d9034c9dfdb3eefb (diff)
parent5fe81438b52f8464947e5b27381a898d7451260e (diff)
Merge branch 'rj/sequencer-sign-off-header-static'
Code clean-up. * rj/sequencer-sign-off-header-static: sequencer: make sign_off_header a file local symbol
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sequencer.c b/sequencer.c
index 972402e8c0..0db410d590 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -35,7 +35,7 @@
#define GIT_REFLOG_ACTION "GIT_REFLOG_ACTION"
-const char sign_off_header[] = "Signed-off-by: ";
+static const char sign_off_header[] = "Signed-off-by: ";
static const char cherry_picked_prefix[] = "(cherry picked from commit ";
GIT_PATH_FUNC(git_path_commit_editmsg, "COMMIT_EDITMSG")