summaryrefslogtreecommitdiffstats
path: root/src/H5PL.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-03-30 18:22:43 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-03-30 19:40:44 (GMT)
commitcb222dded242724909bbb235518c6d819c06b7c7 (patch)
treef2f96c3f193711350857f6bc5716a966d4785c4c /src/H5PL.c
parentc25651fc5ce850715781a967396328a0b4cef43c (diff)
downloadhdf5-cb222dded242724909bbb235518c6d819c06b7c7.zip
hdf5-cb222dded242724909bbb235518c6d819c06b7c7.tar.gz
hdf5-cb222dded242724909bbb235518c6d819c06b7c7.tar.bz2
HDFFV-10143 change put to replace and add const
Diffstat (limited to 'src/H5PL.c')
-rw-r--r--src/H5PL.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5PL.c b/src/H5PL.c
index abd3ea2..4bf19fc 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -417,7 +417,7 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5PLappend(char* plugin_path)
+H5PLappend(const char* plugin_path)
{
herr_t ret_value = SUCCEED; /* Return value */
char *dl_path = NULL;
@@ -455,7 +455,7 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5PLprepend(char* plugin_path)
+H5PLprepend(const char* plugin_path)
{
herr_t ret_value = SUCCEED; /* Return value */
char *dl_path = NULL;
@@ -487,7 +487,7 @@ done:
/*-------------------------------------------------------------------------
- * Function: H5PLput
+ * Function: H5PLreplace
*
* Purpose: Replace the path at the specified index.
*
@@ -496,7 +496,7 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5PLput(char* plugin_path, unsigned int index)
+H5PLreplace(const char* plugin_path, unsigned int index)
{
herr_t ret_value = SUCCEED; /* Return value */
char *dl_path = NULL;
@@ -520,7 +520,7 @@ done:
dl_path = (char *)H5MM_xfree(dl_path);
FUNC_LEAVE_API(ret_value)
-} /* end H5PLput() */
+} /* end H5PLreplace() */
/*-------------------------------------------------------------------------
@@ -533,7 +533,7 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5PLinsert(char* plugin_path, unsigned int index)
+H5PLinsert(const char* plugin_path, unsigned int index)
{
herr_t ret_value = SUCCEED; /* Return value */
char *dl_path = NULL;