summaryrefslogtreecommitdiff
path: root/sequencer.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-07-24 21:50:47 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-07-24 21:50:47 (GMT)
commit00da9b2091ef8d1955fa2f021b8ba111ce6a5fed (patch)
tree6f06221912c327a5e92ccee1c8ecd0b3bfdd8459 /sequencer.c
parent26a46437ecfd8ca9ae6c6f59e4905ef301d5a56f (diff)
parent2b647a05d7223beacba076e45b3920a8621d28e7 (diff)
downloadgit-00da9b2091ef8d1955fa2f021b8ba111ce6a5fed.zip
git-00da9b2091ef8d1955fa2f021b8ba111ce6a5fed.tar.gz
git-00da9b2091ef8d1955fa2f021b8ba111ce6a5fed.tar.bz2
Merge branch 'bb/pedantic'
The codebase has been updated to compile cleanly with -pedantic option. * bb/pedantic: utf8.c: avoid char overflow string-list.c: avoid conversion from void * to function pointer sequencer.c: avoid empty statements at top level convert.c: replace "\e" escapes with "\033". fixup! refs/refs-internal.h: avoid forward declaration of an enum refs/refs-internal.h: avoid forward declaration of an enum fixup! connect.h: avoid forward declaration of an enum connect.h: avoid forward declaration of an enum
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sequencer.c b/sequencer.c
index 03c4740..349ae04 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -63,12 +63,12 @@ static GIT_PATH_FUNC(rebase_path_done, "rebase-merge/done")
* The file to keep track of how many commands were already processed (e.g.
* for the prompt).
*/
-static GIT_PATH_FUNC(rebase_path_msgnum, "rebase-merge/msgnum");
+static GIT_PATH_FUNC(rebase_path_msgnum, "rebase-merge/msgnum")
/*
* The file to keep track of how many commands are to be processed in total
* (e.g. for the prompt).
*/
-static GIT_PATH_FUNC(rebase_path_msgtotal, "rebase-merge/end");
+static GIT_PATH_FUNC(rebase_path_msgtotal, "rebase-merge/end")
/*
* The commit message that is planned to be used for any changes that
* need to be committed following a user interaction.