summaryrefslogtreecommitdiffstats
path: root/src/H5Ptest.c
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2020-05-21 13:42:57 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2020-05-21 13:42:57 (GMT)
commit0da4c416ce4ef703529023465c494b7bab5f138b (patch)
treee91964be82d7378f0fc06f033be9c4942c585cfe /src/H5Ptest.c
parent2d43fb8f02956d95fffb9b6d17f54d46aa8671bb (diff)
downloadhdf5-0da4c416ce4ef703529023465c494b7bab5f138b.zip
hdf5-0da4c416ce4ef703529023465c494b7bab5f138b.tar.gz
hdf5-0da4c416ce4ef703529023465c494b7bab5f138b.tar.bz2
Brought property list code in line with develop.
Diffstat (limited to 'src/H5Ptest.c')
-rw-r--r--src/H5Ptest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Ptest.c b/src/H5Ptest.c
index 426f088..303fbf7 100644
--- a/src/H5Ptest.c
+++ b/src/H5Ptest.c
@@ -68,7 +68,7 @@ H5P__get_class_path_test(hid_t pclass_id)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, NULL, "not a property class");
/* Get the property list class path */
- if(NULL == (ret_value = H5P_get_class_path(pclass)))
+ if(NULL == (ret_value = H5P__get_class_path(pclass)))
HGOTO_ERROR(H5E_PLIST, H5E_NOTFOUND, NULL, "unable to query full path of class")
done:
@@ -109,7 +109,7 @@ H5P__open_class_path_test(const char *path)
HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, H5I_INVALID_HID, "invalid class path");
/* Open the property list class */
- if (NULL == (pclass = H5P_open_class_path(path)))
+ if (NULL == (pclass = H5P__open_class_path(path)))
HGOTO_ERROR(H5E_PLIST, H5E_NOTFOUND, H5I_INVALID_HID, "unable to find class with full path");
/* Get an atom for the class */
@@ -118,7 +118,7 @@ H5P__open_class_path_test(const char *path)
done:
if (H5I_INVALID_HID == ret_value && pclass)
- H5P_close_class(pclass);
+ H5P__close_class(pclass);
FUNC_LEAVE_NOAPI(ret_value)
} /* H5P__open_class_path_test() */