summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2000-04-12 21:12:35 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2000-04-12 21:12:35 (GMT)
commit03cfc650aeeca30b15925b41006127fe84bfbc36 (patch)
tree389998653bf82aa5ee3384a107b57936da6a03a7 /src
parent8e7d3891941acec3b383405de35883f760fca1ef (diff)
downloadhdf5-03cfc650aeeca30b15925b41006127fe84bfbc36.zip
hdf5-03cfc650aeeca30b15925b41006127fe84bfbc36.tar.gz
hdf5-03cfc650aeeca30b15925b41006127fe84bfbc36.tar.bz2
[svn-r2128] 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')
-rw-r--r--src/H5A.c2
-rw-r--r--src/H5Apublic.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/H5A.c b/src/H5A.c
index 8c113e1..331547b 100644
--- a/src/H5A.c
+++ b/src/H5A.c
@@ -1149,7 +1149,7 @@ 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 */
diff --git a/src/H5Apublic.h b/src/H5Apublic.h
index cdc19ec9..809a4a3 100644
--- a/src/H5Apublic.h
+++ b/src/H5Apublic.h
@@ -23,7 +23,7 @@
extern "C" {
#endif
-typedef int (*H5A_operator_t)(hid_t location_id/*in*/,
+typedef herr_t (*H5A_operator_t)(hid_t location_id/*in*/,
const char *attr_name/*in*/, void *operator_data/*in,out*/);
/* Public function prototypes */
@@ -38,7 +38,7 @@ __DLL__ hid_t H5Aget_space(hid_t attr_id);
__DLL__ hid_t H5Aget_type(hid_t attr_id);
__DLL__ ssize_t H5Aget_name(hid_t attr_id, size_t buf_size, char *buf);
__DLL__ int H5Aget_num_attrs(hid_t loc_id);
-__DLL__ int H5Aiterate(hid_t loc_id, unsigned *attr_num, H5A_operator_t op,
+__DLL__ herr_t H5Aiterate(hid_t loc_id, unsigned *attr_num, H5A_operator_t op,
void *op_data);
__DLL__ herr_t H5Adelete(hid_t loc_id, const char *name);