summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/H5PL.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PL.c b/src/H5PL.c
index 5fb8147..54d3407 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -432,7 +432,7 @@ H5PL__find(H5PL_type_t plugin_type, int type_id, char *dir, void **info)
FUNC_ENTER_STATIC
/* Specify a file mask. *.* = We want everything! */
- sprintf(service, "%s*.*", dir);
+ sprintf(service, "%s\/*.*", dir);
if((hFind = FindFirstFile(service, &fdFile)) == INVALID_HANDLE_VALUE)
HGOTO_ERROR(H5E_PLUGIN, H5E_OPENERROR, FAIL, "can't open directory")