summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@lbl.gov>2018-12-05 20:09:05 (GMT)
committerQuincey Koziol <koziol@lbl.gov>2018-12-05 20:09:05 (GMT)
commit55e87e5b86aacbb37c57614cd2e869541291caad (patch)
tree6846f5e3031769d85603826852dea322174a5c54
parent14f463593bb8fb5eb326709753aa6ead2db2c7c3 (diff)
parente395d1ed7c76ab224a862c396020758097681cad (diff)
downloadhdf5-55e87e5b86aacbb37c57614cd2e869541291caad.zip
hdf5-55e87e5b86aacbb37c57614cd2e869541291caad.tar.gz
hdf5-55e87e5b86aacbb37c57614cd2e869541291caad.tar.bz2
Merge pull request #1353 in HDFFV/hdf5 from stackable_vol_fix_01 to develop
* commit 'e395d1ed7c76ab224a862c396020758097681cad': Correct Windows build.
-rw-r--r--src/H5PLpath.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5PLpath.c b/src/H5PLpath.c
index 460f19d..d53007b 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->key, 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)