summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2017-11-21 15:51:27 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2017-11-21 15:51:27 (GMT)
commit4d2e7ea66651e8902c91ea92f0236f327924d138 (patch)
tree9e99981083edb7b95a2d39fd232a6537647760de
parentfe417b3025c475b15c0247f7ee452123e8f64dc2 (diff)
parentcd72e02a336369ee25a26d4ad63d4c498e613f70 (diff)
downloadhdf5-4d2e7ea66651e8902c91ea92f0236f327924d138.zip
hdf5-4d2e7ea66651e8902c91ea92f0236f327924d138.tar.gz
hdf5-4d2e7ea66651e8902c91ea92f0236f327924d138.tar.bz2
Merge pull request #792 in HDFFV/hdf5 from ~DEROBINS/hdf5_der:H5Z_H5PL_normalize to develop
* commit 'cd72e02a336369ee25a26d4ad63d4c498e613f70': Fixed Windows code in H5PLpath.c
-rw-r--r--src/H5PLpath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PLpath.c b/src/H5PLpath.c
index d8e82f8..972f1d0 100644
--- a/src/H5PLpath.c
+++ b/src/H5PLpath.c
@@ -755,7 +755,7 @@ H5PL__find_plugin_in_path(const H5PL_search_params_t *search_params, hbool_t *fo
continue;
/* attempt to open the dynamic library as a filter library */
- if (H5PL__open(path, search_params->type, search_params->search_key.id, found, plugin_info) < 0)
+ if (H5PL__open(path, search_params->type, search_params->key, found, plugin_info) < 0)
HGOTO_ERROR(H5E_PLUGIN, H5E_CANTGET, FAIL, "search in directory failed")
if (*found)
HGOTO_DONE(SUCCEED)