summaryrefslogtreecommitdiffstats
path: root/test/testhdf5.h
diff options
context:
space:
mode:
authorAlbert Cheng <acheng@hdfgroup.org>2013-02-18 16:11:35 (GMT)
committerAlbert Cheng <acheng@hdfgroup.org>2013-02-18 16:11:35 (GMT)
commit52281ac2cb0ee830f236344fcb32452ed9804268 (patch)
tree98ce78b5b3e98015b5fb8d58dc9ae4a1ff6b6b09 /test/testhdf5.h
parenta66624ed688f7f4d4e85031b63b3f4688c82c9d2 (diff)
downloadhdf5-52281ac2cb0ee830f236344fcb32452ed9804268.zip
hdf5-52281ac2cb0ee830f236344fcb32452ed9804268.tar.gz
hdf5-52281ac2cb0ee830f236344fcb32452ed9804268.tar.bz2
[svn-r23298] 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.
Diffstat (limited to 'test/testhdf5.h')
-rw-r--r--test/testhdf5.h2
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)