diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-04-21 15:07:30 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-04-21 15:07:30 (GMT) |
commit | 3968c5c3bf16dc23a0a2ff1fa8d6c64dd2f8d32a (patch) | |
tree | 125fbfb5a18a00642d67c78c748fcae68353d9cc /src/H5PL.c | |
parent | 4a70b0d7dc8dfff8e8ef58677b03d725d0d7b29a (diff) | |
download | hdf5-3968c5c3bf16dc23a0a2ff1fa8d6c64dd2f8d32a.zip hdf5-3968c5c3bf16dc23a0a2ff1fa8d6c64dd2f8d32a.tar.gz hdf5-3968c5c3bf16dc23a0a2ff1fa8d6c64dd2f8d32a.tar.bz2 |
Fix parameter form
Diffstat (limited to 'src/H5PL.c')
-rw-r--r-- | src/H5PL.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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; |