diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2018-12-31 00:55:10 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2018-12-31 00:55:10 (GMT) |
commit | 51edd286ac330ed5188f06d8ec1b4567238c3dfa (patch) | |
tree | 8e82cb3b6aa3f192f756ba4f27141de91dd81456 /src/H5Adeprec.c | |
parent | 0ef588986260da7bd72697c276f0f8937791f59f (diff) | |
download | hdf5-51edd286ac330ed5188f06d8ec1b4567238c3dfa.zip hdf5-51edd286ac330ed5188f06d8ec1b4567238c3dfa.tar.gz hdf5-51edd286ac330ed5188f06d8ec1b4567238c3dfa.tar.bz2 |
Removed 'VOL' versions of FUNC_ENTER macros as well as empty functions
orginally intended to support the full SWMR feature (from develop).
Diffstat (limited to 'src/H5Adeprec.c')
-rw-r--r-- | src/H5Adeprec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Adeprec.c b/src/H5Adeprec.c index 9b592b0..99c1c0c 100644 --- a/src/H5Adeprec.c +++ b/src/H5Adeprec.c @@ -340,7 +340,7 @@ H5Aget_num_attrs(hid_t loc_id) } /*lint !e788 All appropriate cases are covered */ /* Look up the # of attributes for the object */ - if((ret_value = H5A__get_num_attrs(loc)) < 0) + if((ret_value = H5O__attr_count(loc)) < 0) HGOTO_ERROR(H5E_ATTR, H5E_CANTCOUNT, FAIL, "can't get attribute count for object") done: |