summaryrefslogtreecommitdiffstats
path: root/test/th5s.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1998-03-12 21:04:53 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1998-03-12 21:04:53 (GMT)
commite4d89c2cd635e38c379a93a569dce473d66e69f4 (patch)
tree73173c110fe74a679cd3a63060831fd42536986d /test/th5s.c
parent4e295e1fdaeb1e73ed505482013b000bb62269be (diff)
downloadhdf5-e4d89c2cd635e38c379a93a569dce473d66e69f4.zip
hdf5-e4d89c2cd635e38c379a93a569dce473d66e69f4.tar.gz
hdf5-e4d89c2cd635e38c379a93a569dce473d66e69f4.tar.bz2
[svn-r319] Removed H5M API from code
Diffstat (limited to 'test/th5s.c')
-rw-r--r--test/th5s.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/th5s.c b/test/th5s.c
index aca8df0..4431fef 100644
--- a/test/th5s.c
+++ b/test/th5s.c
@@ -28,8 +28,8 @@ static char RcsId[] = "$Revision$";
#include <H5private.h>
#include <H5Bprivate.h>
-#include <H5Mprivate.h>
#include <H5Sprivate.h>
+#include <H5Pprivate.h>
#define FILE "th5p1.h5"
@@ -103,11 +103,11 @@ test_h5p_basic(void)
CHECK(ret, FAIL, "H5Sget_ldims");
VERIFY(HDmemcmp(tdims, dims2, SPACE2_RANK * sizeof(uint32)), 0, "H5Sget_ldims");
- ret = H5Mclose(sid1);
- CHECK(ret, FAIL, "H5Mrelease");
+ ret = H5Sclose(sid1);
+ CHECK(ret, FAIL, "H5Sclose");
- ret = H5Mclose(sid2);
- CHECK(ret, FAIL, "H5Mrelease");
+ ret = H5Sclose(sid2);
+ CHECK(ret, FAIL, "H5Sclose");
/* Close first file */
ret = H5Fclose(fid1);