From c582df7538e71fd80915ef922b3edb530a66f70f Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Wed, 10 Jul 2019 09:22:32 -0700 Subject: Revert path processing to fix daily test errors. --- src/H5PLpath.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5PLpath.c b/src/H5PLpath.c index 44d9cb9..e270c73 100644 --- a/src/H5PLpath.c +++ b/src/H5PLpath.c @@ -678,7 +678,7 @@ H5PL__find_plugin_in_path(const H5PL_search_params_t *search_params, hbool_t *fo if (NULL == (path = (char *)H5MM_calloc(len))) HGOTO_ERROR(H5E_PLUGIN, H5E_CANTALLOC, FAIL, "can't allocate memory for path") - HDsnprintf(path, len, "%s%s%s", dir, H5PL_PATH_SEPARATOR, dp->d_name); + HDsnprintf(path, len, "%s/%s", dir, dp->d_name); /* Get info for directory entry */ if (HDstat(path, &my_stat) == -1) -- cgit v0.12