summaryrefslogtreecommitdiffstats
path: root/src/H5PL.c
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2017-04-21 15:07:30 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2017-04-21 15:07:30 (GMT)
commit3968c5c3bf16dc23a0a2ff1fa8d6c64dd2f8d32a (patch)
tree125fbfb5a18a00642d67c78c748fcae68353d9cc /src/H5PL.c
parent4a70b0d7dc8dfff8e8ef58677b03d725d0d7b29a (diff)
downloadhdf5-3968c5c3bf16dc23a0a2ff1fa8d6c64dd2f8d32a.zip
hdf5-3968c5c3bf16dc23a0a2ff1fa8d6c64dd2f8d32a.tar.gz
hdf5-3968c5c3bf16dc23a0a2ff1fa8d6c64dd2f8d32a.tar.bz2
Fix parameter form
Diffstat (limited to 'src/H5PL.c')
-rw-r--r--src/H5PL.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/H5PL.c b/src/H5PL.c
index a083f5a..9bdd0ba 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -417,7 +417,7 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5PLappend(const char* plugin_path)
+H5PLappend(const char *plugin_path)
{
herr_t ret_value = SUCCEED; /* Return value */
char *dl_path = NULL;
@@ -450,7 +450,7 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5PLprepend(const char* plugin_path)
+H5PLprepend(const char *plugin_path)
{
herr_t ret_value = SUCCEED; /* Return value */
char *dl_path = NULL;
@@ -486,7 +486,7 @@ done:
*-------------------------------------------------------------------------
*/
herr_t
-H5PLreplace(const 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:
*-------------------------------------------------------------------------
*/
herr_t
-H5PLinsert(const 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;