diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-04-16 13:55:27 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2015-04-16 13:55:27 (GMT) |
commit | b5188673f70ab4f144a9b2927ce43ce407b0c8b8 (patch) | |
tree | 5fa8b99b61eeed099ad6a2a8d78b080cd0dc847f /src/H5Dfill.c | |
parent | 6b8492bf99637a092886e7cb5d75ea4389da42d7 (diff) | |
download | hdf5-b5188673f70ab4f144a9b2927ce43ce407b0c8b8.zip hdf5-b5188673f70ab4f144a9b2927ce43ce407b0c8b8.tar.gz hdf5-b5188673f70ab4f144a9b2927ce43ce407b0c8b8.tar.bz2 |
[svn-r26824] merge 26771 and 26777 from trunk.
Fix internal H5AC dxpl usage in the library.
tested with h5committest.
Diffstat (limited to 'src/H5Dfill.c')
-rw-r--r-- | src/H5Dfill.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dfill.c b/src/H5Dfill.c index e682dd6..484c362 100644 --- a/src/H5Dfill.c +++ b/src/H5Dfill.c @@ -133,7 +133,7 @@ H5Dfill(const void *fill, hid_t fill_type_id, void *buf, hid_t buf_type_id, hid_ HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, 0, "not a datatype") /* Fill the selection in the memory buffer */ - if(H5D__fill(fill, fill_type, buf, buf_type, space, H5AC_dxpl_id) < 0) + if(H5D__fill(fill, fill_type, buf, buf_type, space, H5AC_ind_dxpl_id) < 0) HGOTO_ERROR(H5E_DATASET, H5E_CANTENCODE, FAIL, "filling selection failed") done: |