Fix parameter form

This commit is contained in:
Allen Byrne
2017-04-21 10:07:30 -05:00
parent 4a70b0d7dc
commit 3968c5c3bf

View File

@@ -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;