diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2017-11-21 09:22:21 (GMT) |
---|---|---|
committer | M. Scot Breitenfeld <brtnfld@hdfgroup.org> | 2017-11-29 16:27:00 (GMT) |
commit | 5c472f5d7bbaa7cad6ec29fa531fea4257a5fc39 (patch) | |
tree | 1d95fe1dace70da361e7d7264c43b4f4153b4c13 | |
parent | d5b70b549e41a1a48e3745cb2c076e8953b60a71 (diff) | |
download | hdf5-5c472f5d7bbaa7cad6ec29fa531fea4257a5fc39.zip hdf5-5c472f5d7bbaa7cad6ec29fa531fea4257a5fc39.tar.gz hdf5-5c472f5d7bbaa7cad6ec29fa531fea4257a5fc39.tar.bz2 |
Fixed Windows code in H5PLpath.c
-rw-r--r-- | src/H5PLpath.c | 2 |
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) |