diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2018-03-21 05:12:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2018-03-21 05:12:02 (GMT) |
commit | 667308c80d2b750aaa47c3555fc0c478b8dd4f3c (patch) | |
tree | 4f1040ec6511182c84902b5526bcc2757d2a769f /src | |
parent | 4766d282ff21bf7dad3852696b33869beff12415 (diff) | |
parent | 6a1627f2967099039e11b9e86cf347f6482bdf3c (diff) | |
download | hdf5-667308c80d2b750aaa47c3555fc0c478b8dd4f3c.zip hdf5-667308c80d2b750aaa47c3555fc0c478b8dd4f3c.tar.gz hdf5-667308c80d2b750aaa47c3555fc0c478b8dd4f3c.tar.bz2 |
Merge remote-tracking branch 'origin/develop' into merge_func_enter_vol
Diffstat (limited to 'src')
-rw-r--r-- | src/H5Dchunk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dchunk.c b/src/H5Dchunk.c index 5e6047a..c62f201 100644 --- a/src/H5Dchunk.c +++ b/src/H5Dchunk.c @@ -464,7 +464,7 @@ H5D__chunk_direct_write(const H5D_t *dset, uint32_t filters, hsize_t *offset, /* Set the chunk's filter mask to the new settings */ udata.filter_mask = filters; - if((layout->storage.u.chunk.ops->insert)(&idx_info, &udata, NULL) < 0) + if((layout->storage.u.chunk.ops->insert)(&idx_info, &udata, dset) < 0) HGOTO_ERROR(H5E_DATASET, H5E_CANTINSERT, FAIL, "unable to insert chunk addr into index") } /* end if */ |