diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-12 21:09:38 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2000-04-12 21:09:38 (GMT) |
commit | b53ed77dbdc39ab5ab3daecb21ba78474c664607 (patch) | |
tree | 020815daf3af5bbe44555e9a492c7bbb68b0c08b /src/H5A.c | |
parent | 04404b74db9fa463e851213121467cb9f4ce0304 (diff) | |
download | hdf5-b53ed77dbdc39ab5ab3daecb21ba78474c664607.zip hdf5-b53ed77dbdc39ab5ab3daecb21ba78474c664607.tar.gz hdf5-b53ed77dbdc39ab5ab3daecb21ba78474c664607.tar.bz2 |
[svn-r2124] Changed return type of H5Aiterate and the H5A_operator_t to herr_t, to align
them with the dataset & group iterator functions.
Diffstat (limited to 'src/H5A.c')
-rw-r--r-- | src/H5A.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1149,12 +1149,12 @@ H5Aget_num_attrs(hid_t loc_id) * attributes are processed. * --------------------------------------------------------------------------*/ -int +herr_t H5Aiterate(hid_t loc_id, unsigned *attr_num, H5A_operator_t op, void *op_data) { H5G_entry_t *ent = NULL; /*symtab ent of object to attribute */ H5A_t found_attr; - intn ret_value = 0; + herr_t ret_value = 0; intn idx; FUNC_ENTER(H5Aiterate, FAIL); |