summaryrefslogtreecommitdiffstats
path: root/src/H5PLpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/H5PLpath.c')
-rw-r--r--src/H5PLpath.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/H5PLpath.c b/src/H5PLpath.c
index 0aaa5b1..16b4566 100644
--- a/src/H5PLpath.c
+++ b/src/H5PLpath.c
@@ -100,7 +100,7 @@ static unsigned H5PL_path_capacity_g = H5PL_INITIAL_PATH_CAPACITY;
static herr_t
H5PL__insert_at(const char *path, unsigned int idx)
{
- char * path_copy = NULL; /* copy of path string (for storing) */
+ char *path_copy = NULL; /* copy of path string (for storing) */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_STATIC
@@ -181,7 +181,7 @@ H5PL__make_space_at(unsigned int idx)
static herr_t
H5PL__replace_at(const char *path, unsigned int idx)
{
- char * path_copy = NULL; /* copy of path string (for storing) */
+ char *path_copy = NULL; /* copy of path string (for storing) */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_STATIC
@@ -231,8 +231,8 @@ H5PL__create_path_table(void)
char *paths = NULL; /* Delimited paths string. Either from the
* environment variable or the default.
*/
- char * next_path = NULL; /* A path tokenized from the paths string */
- char * lasts = NULL; /* Context pointer for strtok_r() call */
+ char *next_path = NULL; /* A path tokenized from the paths string */
+ char *lasts = NULL; /* Context pointer for strtok_r() call */
herr_t ret_value = SUCCEED; /* Return value */
FUNC_ENTER_PACKAGE
@@ -618,8 +618,8 @@ static herr_t
H5PL__find_plugin_in_path(const H5PL_search_params_t *search_params, hbool_t *found, const char *dir,
const void **plugin_info)
{
- char * path = NULL;
- DIR * dirp = NULL; /* Directory stream */
+ char *path = NULL;
+ DIR *dirp = NULL; /* Directory stream */
struct dirent *dp = NULL; /* Directory entry */
herr_t ret_value = SUCCEED;
@@ -698,7 +698,7 @@ H5PL__find_plugin_in_path(const H5PL_search_params_t *search_params, hbool_t *fo
{
WIN32_FIND_DATAA fdFile;
HANDLE hFind = INVALID_HANDLE_VALUE;
- char * path = NULL;
+ char *path = NULL;
char service[2048];
herr_t ret_value = SUCCEED;