diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2009-02-25 14:21:36 +1030 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2009-02-25 14:21:36 +1030 |
commit | 04160dbda10c78fbd4ee452d0af89d540e20b09a (patch) | |
tree | 7fbed305ce191e95d810db66027eecdb6d3452b4 | |
parent | c2da0c398dbd4890b90e73fed4b2e64e0a2d2e9d (diff) |
Make diag() go to stdout: everything else does.
-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 |