diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-06-05 17:55:09 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-06-05 17:55:09 (GMT) |
commit | 10108d7e304531493c1e6158b50ac6d839fdf562 (patch) | |
tree | 0f356236a5a32eee42d3833b06189f845f8d83ce /src/H5PL.c | |
parent | fab67b684ee108a3e913828e2d236d59a9a8e487 (diff) | |
download | hdf5-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/H5PL.c')
-rw-r--r-- | src/H5PL.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |