projects
/
ccan
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c2da0c3
)
Make diag() go to stdout: everything else does.
author
Rusty Russell
<rusty@rustcorp.com.au>
Wed, 25 Feb 2009 03:51:36 +0000
(14:21 +1030)
committer
Rusty Russell
<rusty@rustcorp.com.au>
Wed, 25 Feb 2009 03:51:36 +0000
(14:21 +1030)
ccan/tap/tap.c
patch
|
blob
|
history
diff --git
a/ccan/tap/tap.c
b/ccan/tap/tap.c
index 6c454a5b976be628d55bb71abfbd169bc56e3a97..5c475bcce97cd7232ca7a950fc0ceba20ada533b 100644
(file)
--- 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("# ", std
err
);
- vfprintf(std
err
, fmt, ap);
- fputs("\n", std
err
);
+ fputs("# ", std
out
);
+ vfprintf(std
out
, fmt, ap);
+ fputs("\n", std
out
);
}
static void