summaryrefslogtreecommitdiff
path: root/sequencer.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-11-02 02:04:57 (GMT)
committerJunio C Hamano <gitster@pobox.com>2018-11-02 02:04:57 (GMT)
commit9d322282e4a5be1c908d73c8039f99cb9950f8f3 (patch)
tree6dc578f774fe16ed9dff23b5012cf07958f0f4d3 /sequencer.c
parent7ce32f72e3eb0d82ead82d748f10cbd0d0c4066c (diff)
parent4af5174168f8f08c063fd24f8626f406feacacc5 (diff)
downloadgit-9d322282e4a5be1c908d73c8039f99cb9950f8f3.zip
git-9d322282e4a5be1c908d73c8039f99cb9950f8f3.tar.gz
git-9d322282e4a5be1c908d73c8039f99cb9950f8f3.tar.bz2
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 3c86c76..22d7532 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)