diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2015-05-18 13:02:16 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2015-05-18 13:02:16 (GMT) |
commit | 1f85a96f3eadda5ab08ef24008947e6f63c0baa8 (patch) | |
tree | 79eab615d2cad9f2b66b57f00566765a791b39ab /test | |
parent | e60905c68b866ae63cd52724b3c71f9fd2a88af7 (diff) | |
download | hdf5-1f85a96f3eadda5ab08ef24008947e6f63c0baa8.zip hdf5-1f85a96f3eadda5ab08ef24008947e6f63c0baa8.tar.gz hdf5-1f85a96f3eadda5ab08ef24008947e6f63c0baa8.tar.bz2 |
[svn-r27098] Merge of r27097 from trunk
Fixed a typo in test/th5o.c that caused the wrong property list
ID to be checked.
Fixes HDFFV-730
Tested on: h5committest
Diffstat (limited to 'test')
-rw-r--r-- | test/th5o.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/th5o.c b/test/th5o.c index a470f4c..be3b4ab 100644 --- a/test/th5o.c +++ b/test/th5o.c @@ -669,7 +669,7 @@ test_h5o_plist(void) gcpl = H5Gget_create_plist(grp); CHECK(gcpl, FAIL, "H5Gget_create_plist"); tcpl = H5Tget_create_plist(dtype); - CHECK(dcpl, FAIL, "H5Tget_create_plist"); + CHECK(tcpl, FAIL, "H5Tget_create_plist"); dcpl = H5Dget_create_plist(dset); CHECK(dcpl, FAIL, "H5Dget_create_plist"); @@ -719,7 +719,7 @@ test_h5o_plist(void) gcpl = H5Gget_create_plist(grp); CHECK(gcpl, FAIL, "H5Gget_create_plist"); tcpl = H5Tget_create_plist(dtype); - CHECK(dcpl, FAIL, "H5Tget_create_plist"); + CHECK(tcpl, FAIL, "H5Tget_create_plist"); dcpl = H5Dget_create_plist(dset); CHECK(dcpl, FAIL, "H5Dget_create_plist"); |