sequencer: cleanup for gcc warning in non developer mode
authorCarlo Marcelo Arenas Belón <carenas@gmail.com>
Thu, 25 Oct 2018 09:38:54 +0000 (02:38 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sat, 27 Oct 2018 06:00:31 +0000 (15:00 +0900)
as shown by:

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(), "");

where write_file will create an empty file if told to write an empty string
as can be inferred by the previous call

the somehow more convoluted syntax works around the issue by providing a non
empty format string and is already being used for the abort safety file since
1e41229d96 ("sequencer: make sequencer abort safer", 2016-12-07)

Signed-off-by: Carlo Marcelo Arenas Belón <carenas@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sequencer.c
index 8dd6db5a017030da8468a48fe868d2982394699d..10f602c4d4f811b4fb1611f58439075f57f68947 100644 (file)
@@ -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(), "%s", "");
        if (opts->strategy)
                write_file(rebase_path_strategy(), "%s\n", opts->strategy);
        if (opts->xopts_nr > 0)