From 161914eda1ea8817eb532f7822eb28b6160838cc Mon Sep 17 00:00:00 2001 From: Leon Arber Date: Sun, 13 Mar 2005 19:22:35 -0500 Subject: [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: --- tools/lib/h5diff_util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)) -- cgit v0.12