diff options
author | Junio C Hamano <gitster@pobox.com> | 2018-11-02 11:04:57 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-11-02 11:04:57 +0900 |
commit | 9d322282e4a5be1c908d73c8039f99cb9950f8f3 (patch) | |
tree | 6dc578f774fe16ed9dff23b5012cf07958f0f4d3 /sequencer.c | |
parent | 7ce32f72e3eb0d82ead82d748f10cbd0d0c4066c (diff) | |
parent | 4af5174168f8f08c063fd24f8626f406feacacc5 (diff) | |
download | git-9d322282e4a5be1c908d73c8039f99cb9950f8f3.tar.gz |
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.c | 2 |
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) |