diff options
author | David Young <dyoung@hdfgroup.org> | 2020-04-16 20:29:26 (GMT) |
---|---|---|
committer | David Young <dyoung@hdfgroup.org> | 2020-04-16 20:29:26 (GMT) |
commit | 86be273386b23c56300dd53705524eb269127b4a (patch) | |
tree | 19877d4b673b0598d25c249b1a6ffe7676bb858d | |
parent | 1f563c80b58b1d480af24a21c1da08a1217b9ac2 (diff) | |
download | hdf5-86be273386b23c56300dd53705524eb269127b4a.zip hdf5-86be273386b23c56300dd53705524eb269127b4a.tar.gz hdf5-86be273386b23c56300dd53705524eb269127b4a.tar.bz2 |
Send debug messages to stderr instead of to stdout.
-rw-r--r-- | test/vfd_swmr_common.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/vfd_swmr_common.c b/test/vfd_swmr_common.c index 2bf4619..5625dd3 100644 --- a/test/vfd_swmr_common.c +++ b/test/vfd_swmr_common.c @@ -42,7 +42,7 @@ dbgf(int level, const char *fmt, ...) return; va_start(ap, fmt); - (void)vprintf(fmt, ap); + (void)vfprintf(stderr, fmt, ap); va_end(ap); } |