summaryrefslogtreecommitdiffstats
path: root/src/H5Dvirtual.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2016-12-01 09:41:13 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2016-12-01 09:41:13 (GMT)
commit5d7d029b97b36d1c380cef82d637342921bf3a1d (patch)
tree76ac3ff4b2240412995ef5902f62601dc9d529f1 /src/H5Dvirtual.c
parent65be68a17d1e5bec7e51e5f3e2e03d22163f7817 (diff)
parent63bcd73f1f53a8b4bb31083cbc30f9a90663438f (diff)
downloadhdf5-5d7d029b97b36d1c380cef82d637342921bf3a1d.zip
hdf5-5d7d029b97b36d1c380cef82d637342921bf3a1d.tar.gz
hdf5-5d7d029b97b36d1c380cef82d637342921bf3a1d.tar.bz2
Merge branch 'develop' of https://bitbucket.hdfgroup.org/scm/~koziol/hdf5 into develop_swmr_merge
Diffstat (limited to 'src/H5Dvirtual.c')
-rw-r--r--src/H5Dvirtual.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Dvirtual.c b/src/H5Dvirtual.c
index 9a90fa7..3780b88 100644
--- a/src/H5Dvirtual.c
+++ b/src/H5Dvirtual.c
@@ -807,7 +807,7 @@ H5D__virtual_open_source_dset(const H5D_t *vdset,
done:
/* Close source file */
if(src_file_open)
- if(H5F_try_close(src_file) < 0)
+ if(H5F_try_close(src_file, NULL) < 0)
HDONE_ERROR(H5E_DATASET, H5E_CANTCLOSEFILE, FAIL, "can't close source file")
FUNC_LEAVE_NOAPI(ret_value)
@@ -2931,7 +2931,7 @@ H5D__virtual_release_source_dset_files(H5D_virtual_held_file_t *head)
* essentially "private" to the virtual dataset, since it wasn't
* opened through an API routine -QAK)
*/
- if(H5F_try_close(head->file) < 0)
+ if(H5F_try_close(head->file, NULL) < 0)
HGOTO_ERROR(H5E_DATASET, H5E_CANTCLOSEFILE, FAIL, "problem attempting file close")
/* Delete node */