From: Rusty Russell Date: Wed, 5 Oct 2011 03:40:29 +0000 (+1030) Subject: ccanlint: fix spurious warning errors. X-Git-Url: https://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=0959991a0cae77bd404dee266aaf0667e51a459e;ds=sidebyside 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. --- 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();