diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2013-03-20 20:24:55 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2013-03-20 20:24:55 (GMT) |
commit | f0e328cc04ae9cf6032e740cf223fcfdd83a5f6d (patch) | |
tree | 75dce20ab1dbed9ea38d757ef07c31896f774d07 /src/H5PL.c | |
parent | fb169f7aa93db566f3e64149fcab2a701a0f382a (diff) | |
download | hdf5-f0e328cc04ae9cf6032e740cf223fcfdd83a5f6d.zip hdf5-f0e328cc04ae9cf6032e740cf223fcfdd83a5f6d.tar.gz hdf5-f0e328cc04ae9cf6032e740cf223fcfdd83a5f6d.tar.bz2 |
[svn-r23406] Correct typo
Diffstat (limited to 'src/H5PL.c')
-rw-r--r-- | src/H5PL.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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") |