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>2018-11-02 05:04:57 +0300
committerJunio C Hamano <gitster@pobox.com>2018-11-02 05:04:57 +0300
commit9d322282e4a5be1c908d73c8039f99cb9950f8f3 (patch)
tree6dc578f774fe16ed9dff23b5012cf07958f0f4d3 /sequencer.c
parent7ce32f72e3eb0d82ead82d748f10cbd0d0c4066c (diff)
parent4af5174168f8f08c063fd24f8626f406feacacc5 (diff)
Merge branch 'cb/printf-empty-format'
Build fix for a topic in flight. * cb/printf-empty-format: sequencer: cleanup for gcc warning in non developer mode
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 3c86c7694b..22d7532c5a 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -2375,7 +2375,7 @@ int write_basic_state(struct replay_opts *opts, const char *head_name,
write_file(rebase_path_quiet(), "\n");
if (opts->verbose)
- write_file(rebase_path_verbose(), "");
+ write_file(rebase_path_verbose(), "%s", "");
if (opts->strategy)
write_file(rebase_path_strategy(), "%s\n", opts->strategy);
if (opts->xopts_nr > 0)