diff options
author | Allen Byrne <byrn@hdfgroup.org> | 2017-04-17 17:34:10 (GMT) |
---|---|---|
committer | Allen Byrne <byrn@hdfgroup.org> | 2017-04-17 17:34:10 (GMT) |
commit | afcede53681c59ce24916291da5670de64030c40 (patch) | |
tree | 43a2ef0607a66bafd01c1fc48b85c98f2f389ab5 /src | |
parent | 6bbc8b69cfe1992d34e28d9f4c532323a412bbdf (diff) | |
parent | 5f7822fac4673cdb9e8ed60d104566c9df43303f (diff) | |
download | hdf5-afcede53681c59ce24916291da5670de64030c40.zip hdf5-afcede53681c59ce24916291da5670de64030c40.tar.gz hdf5-afcede53681c59ce24916291da5670de64030c40.tar.bz2 |
Merging in latest from upstream (HDFFV/hdf5:refs/heads/develop)
* commit '5f7822fac4673cdb9e8ed60d104566c9df43303f':
Express test mods to test/cache.c
Diffstat (limited to 'src')
-rw-r--r-- | src/H5PL.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -564,6 +564,7 @@ H5PLremove(unsigned int index) unsigned int plindex; FUNC_ENTER_API(FAIL) + H5TRACE1("e", "Iu", index); if(H5PL_num_paths_g == 0) HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "no directories in table") if(index >= H5PL_MAX_PATH_NUM) @@ -608,6 +609,7 @@ H5PLget(unsigned int index, char *pathname/*out*/, size_t size) char *dl_path = NULL; FUNC_ENTER_API(FAIL) + H5TRACE3("Zs", "Iuxz", index, pathname, size); if(H5PL_num_paths_g == 0) HGOTO_ERROR(H5E_PLUGIN, H5E_NOSPACE, FAIL, "no directories in table") if(index >= H5PL_MAX_PATH_NUM) |