From 0959991a0cae77bd404dee266aaf0667e51a459e Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 5 Oct 2011 14:10:29 +1030 Subject: [PATCH 1/1] ccanlint: fix spurious warning errors. Because we fork children to do compilations, and we use stdio, we need to flush stdout before the fork otherwise the child will flush afterwards. The compile tests interpret this output as a compiler warning. This shows up if you redirect ccanlint output to a file. --- tools/ccanlint/async.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/ccanlint/async.c b/tools/ccanlint/async.c index 5c2c4da7..ffa18ca8 100644 --- a/tools/ccanlint/async.c +++ b/tools/ccanlint/async.c @@ -51,6 +51,7 @@ static void run_more(void) if (!c) break; + fflush(stdout); if (pipe(p) != 0) err(1, "Pipe failed"); c->pid = fork(); -- 2.39.2