diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2009-06-30 16:08:50 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2009-06-30 16:08:50 (GMT) |
commit | afe8d149bb4196a42efbb58a1df7dbd0dd66f2f4 (patch) | |
tree | ae8ebbd11b7b55afb4d03804b2b55805263bcf0e /test | |
parent | 66b4d3889c3c8644c009eb6778ba0b6ba4552b27 (diff) | |
download | hdf5-afe8d149bb4196a42efbb58a1df7dbd0dd66f2f4.zip hdf5-afe8d149bb4196a42efbb58a1df7dbd0dd66f2f4.tar.gz hdf5-afe8d149bb4196a42efbb58a1df7dbd0dd66f2f4.tar.bz2 |
[svn-r17130] Corrected some typos. No test is needed.
Diffstat (limited to 'test')
-rw-r--r-- | test/tattr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/tattr.c b/test/tattr.c index 20e8091..5501056 100644 --- a/test/tattr.c +++ b/test/tattr.c @@ -10169,7 +10169,7 @@ test_attr_bug6(hid_t fcpl, hid_t fapl) /* Open root group */ gid = H5Gopen2(fid, "/", H5P_DEFAULT); - CHECK(gid, FAIL, "H5Gcreate2"); + CHECK(gid, FAIL, "H5Gopen2"); /* Create dataspace */ sid = H5Screate_simple(1, dims, NULL); @@ -10184,7 +10184,7 @@ test_attr_bug6(hid_t fcpl, hid_t fapl) /* Open the attribute again */ aid2 = H5Aopen(gid, ATTR1_NAME, H5P_DEFAULT); - CHECK(aid2, FAIL, "H5Aopen_name"); + CHECK(aid2, FAIL, "H5Aopen"); ret = H5Aread(aid2, H5T_NATIVE_INT, intar); CHECK(ret, FAIL, "H5Aread"); |