From 92b1ffe75c902ab46d12b4084d5f4efe23293e96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20Andr=C3=A9=20Tanner?= Date: Thu, 13 Feb 2020 13:48:09 +0100 Subject: Fix compiler warnings --- core/ccan-config.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'core') diff --git a/core/ccan-config.c b/core/ccan-config.c index f4edb8e..d118df0 100644 --- a/core/ccan-config.c +++ b/core/ccan-config.c @@ -469,7 +469,8 @@ static bool run_test(const char *cmd, struct test *test) fclose(outf); if (verbose > 1) - if (system("cat " INPUT_FILE) == -1); + if (system("cat " INPUT_FILE) == -1) + ; if (test->link) { char *newcmd; -- cgit v1.2.3