diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-04 17:09:17 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-12-04 17:09:17 (GMT) |
commit | c76724db391db20392c19feed3430da2a8059340 (patch) | |
tree | dc45ef89e557fff7ea16eb2d0957e5cabd3209a8 /src/H5B.c | |
parent | 7e646125f2b6f48096b35a32ea0b8928bbfd7ba9 (diff) | |
download | hdf5-c76724db391db20392c19feed3430da2a8059340.zip hdf5-c76724db391db20392c19feed3430da2a8059340.tar.gz hdf5-c76724db391db20392c19feed3430da2a8059340.tar.bz2 |
[svn-r13019] Description:
Further simplifications and cleanups to object header message code.
Also, some changes to the "iterate" routines, in order to not override
the return value from the iterator callback routine.
Tested on:
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5B.c')
-rw-r--r-- | src/H5B.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1248,7 +1248,7 @@ H5B_iterate (H5F_t *f, hid_t dxpl_id, const H5B_class_t *type, H5B_operator_t op ret_value = (*op)(f, dxpl_id, key + (u * type->sizeof_nkey), child[u], key + ((u + 1) * type->sizeof_nkey), udata); if(ret_value < 0) - HGOTO_ERROR(H5E_BTREE, H5E_CANTINIT, FAIL, "iterator function failed") + HERROR(H5E_BTREE, H5E_CANTLIST, "iterator function failed"); } /* end for */ } /* end for */ } /* end else */ |