diff options
author | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2016-01-22 16:56:09 (GMT) |
---|---|---|
committer | Mohamad Chaarawi <chaarawi@hdfgroup.org> | 2016-01-22 16:56:09 (GMT) |
commit | c3f08947c1fbca8f6ccd87ca35f0f23b6209b129 (patch) | |
tree | a87fa70f66b23e898e462a3a3104720cd1ca7ca5 /src/H5Ofill.c | |
parent | d543f1247312741e0e33dcf6bddc5a73b842e5d0 (diff) | |
parent | 91aeb766fafbc4c03d98699de4cac590df9c63a3 (diff) | |
download | hdf5-c3f08947c1fbca8f6ccd87ca35f0f23b6209b129.zip hdf5-c3f08947c1fbca8f6ccd87ca35f0f23b6209b129.tar.gz hdf5-c3f08947c1fbca8f6ccd87ca35f0f23b6209b129.tar.bz2 |
[svn-r28959] merge from trunk.
renaming metadata dxpl properties.
Diffstat (limited to 'src/H5Ofill.c')
-rw-r--r-- | src/H5Ofill.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Ofill.c b/src/H5Ofill.c index ebcb5d3..f291305 100644 --- a/src/H5Ofill.c +++ b/src/H5Ofill.c @@ -527,7 +527,7 @@ H5O_fill_copy(const void *_src, void *_dst) H5T_path_t *tpath; /* Conversion information */ /* Set up type conversion function */ - if(NULL == (tpath = H5T_path_find(src->type, dst->type, NULL, NULL, H5AC_ind_dxpl_id, FALSE))) + if(NULL == (tpath = H5T_path_find(src->type, dst->type, NULL, NULL, H5AC_dxpl_id, FALSE))) HGOTO_ERROR(H5E_OHDR, H5E_UNSUPPORTED, NULL, "unable to convert between src and dst data types") /* If necessary, convert fill value datatypes (which copies VL components, etc.) */ @@ -555,7 +555,7 @@ H5O_fill_copy(const void *_src, void *_dst) } /* end if */ /* Convert fill value */ - if(H5T_convert(tpath, src_id, dst_id, (size_t)1, (size_t)0, (size_t)0, dst->buf, bkg_buf, H5AC_ind_dxpl_id) < 0) { + if(H5T_convert(tpath, src_id, dst_id, (size_t)1, (size_t)0, (size_t)0, dst->buf, bkg_buf, H5AC_dxpl_id) < 0) { H5I_dec_ref(src_id); H5I_dec_ref(dst_id); if(bkg_buf) |