diff options
-rw-r--r-- | ccan/tap/tap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ccan/tap/tap.c b/ccan/tap/tap.c index 6c454a5b..5c475bcc 100644 --- a/ccan/tap/tap.c +++ b/ccan/tap/tap.c @@ -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 |