Commit 04160dbd authored by Rusty Russell's avatar Rusty Russell

Make diag() go to stdout: everything else does.

parent c2da0c39
......@@ -67,9 +67,9 @@ _expected_tests(unsigned int tests)
static void
diagv(char *fmt, va_list ap)
{
fputs("# ", stderr);
vfprintf(stderr, fmt, ap);
fputs("\n", stderr);
fputs("# ", stdout);
vfprintf(stdout, fmt, ap);
fputs("\n", stdout);
}
static void
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment