mirror of
https://github.com/HDFGroup/hdf5.git
synced 2025-01-30 15:32:37 +08:00
[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:
parent
82b3a0ca4a
commit
161914eda1
@ -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))
|
||||
|
Loading…
Reference in New Issue
Block a user