diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2009-02-12 22:41:52 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2009-02-12 22:41:52 (GMT) |
commit | ca0a3e2853a97329430c7c7ceaa719e4b857d145 (patch) | |
tree | 5e414f586ed820f869919cb9d0e9f7d6ebb1c262 /src/H5F.c | |
parent | 0bdedf0a39e859956b6810e848fa67d16b4e10a4 (diff) | |
download | hdf5-ca0a3e2853a97329430c7c7ceaa719e4b857d145.zip hdf5-ca0a3e2853a97329430c7c7ceaa719e4b857d145.tar.gz hdf5-ca0a3e2853a97329430c7c7ceaa719e4b857d145.tar.bz2 |
[svn-r16483] Description:
Clean up (i.e. remove) more internal calls to H5E_clear_stack(), along with
some other minor code cleanups.
Tested on:
Mac OS X/32 10.5.6 (amazon)
(too minor to require h5committest)
Diffstat (limited to 'src/H5F.c')
-rw-r--r-- | src/H5F.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -428,7 +428,7 @@ H5F_get_obj_count(const H5F_t *f, unsigned types, hbool_t app_ref) FUNC_ENTER_NOAPI_NOINIT_NOFUNC(H5F_get_obj_count) /* H5F_get_objects doesn't fail */ - ret_value=H5F_get_objects(f, types, 0, NULL, app_ref); + ret_value = H5F_get_objects(f, types, 0, NULL, app_ref); FUNC_LEAVE_NOAPI(ret_value) } @@ -518,8 +518,6 @@ H5F_get_obj_ids(const H5F_t *f, unsigned types, size_t max_objs, hid_t *oid_list * Programmer: Raymond Lu * Wednesday, Dec 5, 2001 * - * Modification: - * *--------------------------------------------------------------------------- */ static size_t @@ -587,7 +585,7 @@ H5F_get_objects(const H5F_t *f, unsigned types, size_t max_index, hid_t *obj_id_ ret_value = obj_id_count; FUNC_LEAVE_NOAPI(ret_value) -} +} /* end H5F_get_objects() */ /*------------------------------------------------------------------------- |