diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-20 15:19:18 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-06-20 15:19:18 (GMT) |
commit | 970416829fb40ee7f1c33fe1289e9b7b88ad84a9 (patch) | |
tree | c344e5f62bb295d7e6385ef6918f9761c751b5b0 /src/H5I.c | |
parent | e34f6e8c9ef53157422f871b4f674946d02370d3 (diff) | |
download | hdf5-970416829fb40ee7f1c33fe1289e9b7b88ad84a9.zip hdf5-970416829fb40ee7f1c33fe1289e9b7b88ad84a9.tar.gz hdf5-970416829fb40ee7f1c33fe1289e9b7b88ad84a9.tar.bz2 |
[svn-r7071] Purpose:
Code cleanup
Description:
Tweak internal iterator over IDs to not require constant "operator" data.
Platforms tested:
FreeBSD 4.8 (sleipnir)
h5committest
Diffstat (limited to 'src/H5I.c')
-rw-r--r-- | src/H5I.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1064,7 +1064,7 @@ done: *------------------------------------------------------------------------- */ void * -H5I_search(H5I_type_t grp, H5I_search_func_t func, const void *key) +H5I_search(H5I_type_t grp, H5I_search_func_t func, void *key) { H5I_id_group_t *grp_ptr = NULL; /*ptr to the group */ H5I_id_info_t *id_ptr = NULL; /*ptr to the new ID */ |