summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2013-06-05 17:55:09 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2013-06-05 17:55:09 (GMT)
commit10108d7e304531493c1e6158b50ac6d839fdf562 (patch)
tree0f356236a5a32eee42d3833b06189f845f8d83ce /src
parentfab67b684ee108a3e913828e2d236d59a9a8e487 (diff)
downloadhdf5-10108d7e304531493c1e6158b50ac6d839fdf562.zip
hdf5-10108d7e304531493c1e6158b50ac6d839fdf562.tar.gz
hdf5-10108d7e304531493c1e6158b50ac6d839fdf562.tar.bz2
[svn-r23735] HDFFV-8445: unregonized character warning solved by changing '\/' to '\\'.
Tested: Windows
Diffstat (limited to 'src')
-rw-r--r--src/H5PL.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PL.c b/src/H5PL.c
index 7a8a296..def41d1 100644
--- a/src/H5PL.c
+++ b/src/H5PL.c
@@ -456,7 +456,7 @@ H5PL__find(H5PL_type_t plugin_type, int type_id, char *dir, const void **info)
FUNC_ENTER_STATIC
/* Specify a file mask. *.* = We want everything! */
- sprintf(service, "%s\/*.dll", dir);
+ sprintf(service, "%s\\*.dll", dir);
if((hFind = FindFirstFile(service, &fdFile)) == INVALID_HANDLE_VALUE)
HGOTO_ERROR(H5E_PLUGIN, H5E_OPENERROR, FAIL, "can't open directory")