diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2018-09-18 21:10:14 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2018-09-18 21:10:14 (GMT) |
commit | 680cf4d946fd10d50e0f7acdc5bc93f91037fb4f (patch) | |
tree | 263471c227cce53ce2803e3f91de63c7ec70168c /src/H5Adeprec.c | |
parent | fbf837eac31d510ecc8eaa65ea489ae180cde15f (diff) | |
download | hdf5-680cf4d946fd10d50e0f7acdc5bc93f91037fb4f.zip hdf5-680cf4d946fd10d50e0f7acdc5bc93f91037fb4f.tar.gz hdf5-680cf4d946fd10d50e0f7acdc5bc93f91037fb4f.tar.bz2 |
Removed 'VOL' versions of FUNC_ENTER macros as well as empty functions
orginally intended to support the full SWMR feature.
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: |