diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-10 18:44:22 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-02-10 18:44:22 (GMT) |
commit | b55e5cb9441a658f9e7bc06e4656a6045d0666e8 (patch) | |
tree | aaa79a416d45d70e355c7e30c5d0e7580ac129b7 /src/H5D.c | |
parent | 24d8506dd564c5cc0fdebb5ebdfaec7bda5a7435 (diff) | |
download | hdf5-b55e5cb9441a658f9e7bc06e4656a6045d0666e8.zip hdf5-b55e5cb9441a658f9e7bc06e4656a6045d0666e8.tar.gz hdf5-b55e5cb9441a658f9e7bc06e4656a6045d0666e8.tar.bz2 |
[svn-r6388] Purpose:
Update feature
Description:
Relax collective constraint for API functions which only read metadata
from a file.
Platforms tested:
Tested h5committest {arabica (fortran), eirene (fortran, C++)
modi4 (parallel, fortran)}
FreeBSD 4.7 w/parallel
Diffstat (limited to 'src/H5D.c')
-rw-r--r-- | src/H5D.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -980,7 +980,7 @@ herr_t H5Dget_space_status(hid_t dset_id, H5D_space_status_t *allocation) HGOTO_ERROR (H5E_ARGS, H5E_BADTYPE, FAIL, "not a dataset"); /* Read data space address and return */ - if(FAIL==(ret_value=H5D_get_space_status(dset, allocation, H5AC_dxpl_id))) + if(FAIL==(ret_value=H5D_get_space_status(dset, allocation, H5AC_ind_dxpl_id))) HGOTO_ERROR (H5E_DATASET, H5E_CANTINIT, FAIL, "unable to get space status"); done: @@ -3638,7 +3638,7 @@ H5Dget_storage_size(hid_t dset_id) HGOTO_ERROR(H5E_ARGS, H5E_BADTYPE, 0, "not a dataset"); /* Set return value */ - ret_value = H5D_get_storage_size(dset,H5AC_dxpl_id); + ret_value = H5D_get_storage_size(dset,H5AC_ind_dxpl_id); done: FUNC_LEAVE_API(ret_value); |