aboutsummaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMarc André Tanner <mat@brain-dump.org>2020-02-13 13:48:09 +0100
committerMarc André Tanner <mat@brain-dump.org>2020-02-13 13:48:09 +0100
commit92b1ffe75c902ab46d12b4084d5f4efe23293e96 (patch)
tree212529dbb95188c189b53cfd1010ee9b71b8b271 /core
parent46a2b9991ff3faf47b02dfe9b37ffb0efe354b3d (diff)
downloadvis-92b1ffe75c902ab46d12b4084d5f4efe23293e96.tar.gz
vis-92b1ffe75c902ab46d12b4084d5f4efe23293e96.tar.xz
Fix compiler warnings
Diffstat (limited to 'core')
-rw-r--r--core/ccan-config.c3
1 files changed, 2 insertions, 1 deletions
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;