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) ...@@ -67,9 +67,9 @@ _expected_tests(unsigned int tests)
static void static void
diagv(char *fmt, va_list ap) diagv(char *fmt, va_list ap)
{ {
fputs("# ", stderr); fputs("# ", stdout);
vfprintf(stderr, fmt, ap); vfprintf(stdout, fmt, ap);
fputs("\n", stderr); fputs("\n", stdout);
} }
static void 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