[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:
This commit is contained in:
Leon Arber 2005-03-13 19:22:35 -05:00
parent 82b3a0ca4a
commit 161914eda1

View File

@ -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))