diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2009-06-30 16:10:00 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2009-06-30 16:10:00 (GMT) |
commit | 2d0b2588f672224f029c9beb5b8439d1609db464 (patch) | |
tree | 9f410e69294abff5200db85e5409b1593b4ceea7 /test | |
parent | 2a6efe9e106e13d522957e12184d09dc9159bd91 (diff) | |
download | hdf5-2d0b2588f672224f029c9beb5b8439d1609db464.zip hdf5-2d0b2588f672224f029c9beb5b8439d1609db464.tar.gz hdf5-2d0b2588f672224f029c9beb5b8439d1609db464.tar.bz2 |
[svn-r17131] 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 a4a41a2..8b53818 100644 --- a/test/tattr.c +++ b/test/tattr.c @@ -10173,7 +10173,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); @@ -10188,7 +10188,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"); |