Since doesnt_matter() expands to nothing, GCC -Wextra suggests { }. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
@@ -139,8 +139,9 @@ static void run_under_debugger(struct manifest *m, struct score *score)
command = tal_fmt(m, "gdb -ex 'break tap.c:139' -ex 'run' %s",
first->file->compiled[COMPILE_NORMAL]);
- if (system(command))
+ if (system(command)) {
doesnt_matter();
+ }
}
struct ccanlint tests_pass = {
@@ -255,8 +255,9 @@ static void run_under_debugger_vg(struct manifest *m, struct score *score)
concat(score, per_file_options(&tests_pass_valgrind,
first->file)),
valgrind_suppress, first->file->compiled[COMPILE_NORMAL]);
struct ccanlint tests_pass_valgrind = {
@@ -56,8 +56,9 @@ static void run_under_debugger(struct manifest *m, struct score *score)
first->file->compiled[COMPILE_NOFEAT]);
struct ccanlint tests_pass_without_features = {