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/H5A.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/H5A.c')
-rw-r--r-- | src/H5A.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1113,7 +1113,7 @@ H5Aget_num_attrs(hid_t loc_id) } /* Look up the attribute for the object */ - ret_value=H5O_count(ent, H5O_ATTR, H5AC_dxpl_id); + ret_value=H5O_count(ent, H5O_ATTR, H5AC_ind_dxpl_id); done: FUNC_LEAVE_API(ret_value); @@ -1158,7 +1158,7 @@ H5Arename(hid_t loc_id, const char *old_name, const char *new_name) done: FUNC_LEAVE_API(ret_value); -} +} /* H5Arename() */ /*------------------------------------------------------------------------- |