summaryrefslogtreecommitdiffstats
path: root/tools/lib
diff options
context:
space:
mode:
authorLeon Arber <larber@ncsa.uiuc.edu>2005-03-14 00:22:35 (GMT)
committerLeon Arber <larber@ncsa.uiuc.edu>2005-03-14 00:22:35 (GMT)
commit161914eda1ea8817eb532f7822eb28b6160838cc (patch)
treea81ebf26aa24bc855d419f03123b96fbc9a8b2ad /tools/lib
parent82b3a0ca4a4c04c6ad75b30a5b8491b0f4321bd0 (diff)
downloadhdf5-161914eda1ea8817eb532f7822eb28b6160838cc.zip
hdf5-161914eda1ea8817eb532f7822eb28b6160838cc.tar.gz
hdf5-161914eda1ea8817eb532f7822eb28b6160838cc.tar.bz2
[svn-r10207] Purpose:
Bug fix Description: Typo in #ifdef to check for snprintf functionality. Solution: That should have been H5_VSNPRINTF_WORKS. Platforms tested: heping, modi4 Misc. update:
Diffstat (limited to 'tools/lib')
-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 818a933..c85ab77 100644
--- a/tools/lib/h5diff_util.c
+++ b/tools/lib/h5diff_util.c
@@ -53,7 +53,7 @@ void parallel_print(const char* format, ...)
va_end(ap);
va_start(ap, format);
-#ifdef VSNPRINTF_WORKS
+#ifdef H5_VSNPRINTF_WORKS
if(bytes_written >= (OUTBUFF_SIZE-outBuffOffset))
#else
if((bytes_written+1) == (OUTBUFF_SIZE-outBuffOffset))