mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-27 02:10:55 +08:00
[svn-r23260] Bug fix: HDFFV-8267
The ERROR macro had a typo of missing a separator comma. When used, it seg. fault. Added the comma back in. Fix is reviewed in Crucible HDF5-107. Tested: h5committest passed. Also tested using the ERROR macro in the Mac (Owl) platform. Before fix, it seg. fault. After fix, it prints the message as intended.
This commit is contained in:
parent
472566b543
commit
e8a0753656
@ -142,7 +142,7 @@
|
||||
if(VERBOSE_HI) \
|
||||
print_func(" Call to routine: %15s at line %4d in %s returned " \
|
||||
"invalid result\n", where, (int)__LINE__, __FILE__); \
|
||||
TestErrPrintf("*** UNEXPECTED RESULT from %s at line %4d in %s\n" \
|
||||
TestErrPrintf("*** UNEXPECTED RESULT from %s at line %4d in %s\n", \
|
||||
where, (int)__LINE__, __FILE__); \
|
||||
} while(0)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user