[PATCH] sequencer: cleanup for gcc 8.2.1 warning
From: Carlo Marcelo Arenas Belón <hidden>
Date: 2018-10-25 00:14:20
Subsystem:
the rest · Maintainer:
Linus Torvalds
From: Carlo Marcelo Arenas Belón <hidden>
Date: 2018-10-25 00:14:20
Subsystem:
the rest · Maintainer:
Linus Torvalds
sequencer.c: In function ‘write_basic_state’: sequencer.c:2392:37: warning: zero-length gnu_printf format string [-Wformat-zero-length] write_file(rebase_path_verbose(), ""); Signed-off-by: Carlo Marcelo Arenas Belón <redacted> --- sequencer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sequencer.c b/sequencer.c
index 8dd6db5a01..358e83bf6b 100644
--- a/sequencer.c
+++ b/sequencer.c@@ -2335,7 +2335,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(), "\n"); if (opts->strategy) write_file(rebase_path_strategy(), "%s\n", opts->strategy); if (opts->xopts_nr > 0)
--
2.19.1