diff options
author | Albert Cheng <acheng@hdfgroup.org> | 2013-02-12 21:36:54 (GMT) |
---|---|---|
committer | Albert Cheng <acheng@hdfgroup.org> | 2013-02-12 21:36:54 (GMT) |
commit | e8a075365663ced4997a67b33000c2fde5bcd224 (patch) | |
tree | 63099d98660efcf85f3c88254f7190b36fe101aa | |
parent | 472566b5431eb9bef07ec1ee9573b8a527de5af6 (diff) | |
download | hdf5-e8a075365663ced4997a67b33000c2fde5bcd224.zip hdf5-e8a075365663ced4997a67b33000c2fde5bcd224.tar.gz hdf5-e8a075365663ced4997a67b33000c2fde5bcd224.tar.bz2 |
[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.
-rw-r--r-- | test/testhdf5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testhdf5.h b/test/testhdf5.h index c92c0f0..907fce9 100644 --- a/test/testhdf5.h +++ b/test/testhdf5.h @@ -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) |