summaryrefslogtreecommitdiff
path: root/sequencer.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2019-02-14 02:18:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2019-02-14 02:18:41 (GMT)
commit8ac5444cba9349a5f89e64e1774ea9d6740a5add (patch)
tree2c3a2266d018b43b709f296b4be7d2a858dac495 /sequencer.c
parente9bd4aa026178caeed76ca00d9034c9dfdb3eefb (diff)
parent5fe81438b52f8464947e5b27381a898d7451260e (diff)
downloadgit-8ac5444cba9349a5f89e64e1774ea9d6740a5add.zip
git-8ac5444cba9349a5f89e64e1774ea9d6740a5add.tar.gz
git-8ac5444cba9349a5f89e64e1774ea9d6740a5add.tar.bz2
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 972402e..0db410d 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")