summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorPedro Vicente Nunes <pvn@hdfgroup.org>2005-01-28 18:38:54 (GMT)
committerPedro Vicente Nunes <pvn@hdfgroup.org>2005-01-28 18:38:54 (GMT)
commit792e19e6b81522dde7e94d015783d37b86afc2bd (patch)
tree484f691773204bbfc6012fe04ddbe784a03018ae /tools
parentaea13bdb4480256d37e101c945398355943901fa (diff)
downloadhdf5-792e19e6b81522dde7e94d015783d37b86afc2bd.zip
hdf5-792e19e6b81522dde7e94d015783d37b86afc2bd.tar.gz
hdf5-792e19e6b81522dde7e94d015783d37b86afc2bd.tar.bz2
[svn-r9880] Purpose: bug fix
Description: the print_paralell h5diff function had a call to vsnprintf. this causes a linking error on Windows Solution: replaced with HDvsnprintf Platforms tested: windows (vs6) linux Misc. update:
Diffstat (limited to 'tools')
-rw-r--r--tools/lib/h5diff_util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/lib/h5diff_util.c b/tools/lib/h5diff_util.c
index bc66378..fe2e73c 100644
--- a/tools/lib/h5diff_util.c
+++ b/tools/lib/h5diff_util.c
@@ -37,7 +37,7 @@ void parallel_print(const char* format, ...)
if(g_nTasks < 2)
vprintf(format, ap);
else
- outBuffOffset += vsnprintf(outBuff+outBuffOffset, OUTBUFF_SIZE-outBuffOffset, format, ap);
+ outBuffOffset += HDvsnprintf(outBuff+outBuffOffset, OUTBUFF_SIZE-outBuffOffset, format, ap);
va_end(ap);
}