summaryrefslogtreecommitdiffstats
path: root/src/H5Dchunk.c
diff options
context:
space:
mode:
authorDavid Young <dyoung@hdfgroup.org>2019-11-12 20:02:35 (GMT)
committerDavid Young <dyoung@hdfgroup.org>2019-11-12 20:02:35 (GMT)
commit62afeec0eec60af5c93d38aaa43facdf931404dc (patch)
treefe74979c07c740e3b88f215eb53869c688a322e5 /src/H5Dchunk.c
parent4981e837402428da4da061b8b815f2847cafe557 (diff)
parente08b69d3d2e572de4707b1fbf908111d29f40a1b (diff)
downloadhdf5-62afeec0eec60af5c93d38aaa43facdf931404dc.zip
hdf5-62afeec0eec60af5c93d38aaa43facdf931404dc.tar.gz
hdf5-62afeec0eec60af5c93d38aaa43facdf931404dc.tar.bz2
Merge remote-tracking branch 'hdf5/develop' into add-werror-and-squash-some to
see if new warnings-as-errors have cropped up.
Diffstat (limited to 'src/H5Dchunk.c')
-rw-r--r--src/H5Dchunk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c
index a6b22f8..fe1f31a 100644
--- a/src/H5Dchunk.c
+++ b/src/H5Dchunk.c
@@ -6286,7 +6286,7 @@ H5D__chunk_copy(H5F_t *f_src, H5O_storage_chunk_t *storage_src,
/* create variable-length datatype at the destinaton file */
if(NULL == (dt_dst = H5T_copy(dt_src, H5T_COPY_TRANSIENT)))
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "unable to copy")
- if(H5T_set_loc(dt_dst, f_dst, H5T_LOC_DISK) < 0) {
+ if(H5T_set_loc(dt_dst, H5F_VOL_OBJ(f_dst), H5T_LOC_DISK) < 0) {
(void)H5T_close_real(dt_dst);
HGOTO_ERROR(H5E_DATATYPE, H5E_CANTINIT, FAIL, "cannot mark datatype on disk")
} /* end if */