diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-04-18 14:34:10 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-04-18 21:59:02 (GMT) |
commit | 199e5ce781b7cdd8a12143d48b890cf2fe694bb1 (patch) | |
tree | 6e74e14776b8191f406e8c25d55b8651981447a4 | |
parent | 16346d97fa8254e22ab495c832afda9de5313b9c (diff) | |
download | hdf5-199e5ce781b7cdd8a12143d48b890cf2fe694bb1.zip hdf5-199e5ce781b7cdd8a12143d48b890cf2fe694bb1.tar.gz hdf5-199e5ce781b7cdd8a12143d48b890cf2fe694bb1.tar.bz2 |
Reformat char * args
-rw-r--r-- | src/H5PL.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -415,7 +415,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; @@ -448,7 +448,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; @@ -484,7 +484,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; @@ -518,7 +518,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; |