diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-31 21:02:16 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2003-10-31 21:02:16 (GMT) |
commit | 0b8b8df0e0e9e8dbf3eb5a9e03035094dd5c49d9 (patch) | |
tree | 8b6e718965370d68d2795bc92eff8ba3d63d1cc2 /src/H5I.c | |
parent | 6f6b6bb5e880b0c8f7472847e9b1b2cf498d4e35 (diff) | |
download | hdf5-0b8b8df0e0e9e8dbf3eb5a9e03035094dd5c49d9.zip hdf5-0b8b8df0e0e9e8dbf3eb5a9e03035094dd5c49d9.tar.gz hdf5-0b8b8df0e0e9e8dbf3eb5a9e03035094dd5c49d9.tar.bz2 |
[svn-r7803] Purpose:
Minor code cleanup
Description:
Fixed up comments, made the H5I_get_file_id() routine static, removed
H5Gprivate from including itself...
Platforms tested:
FreeBSD 4.9 (sleipnir)
too minor to require h5committest
Diffstat (limited to 'src/H5I.c')
-rw-r--r-- | src/H5I.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -117,6 +117,7 @@ H5FL_DEFINE_STATIC(H5I_id_info_t); /*--------------------- Local function prototypes ---------------------------*/ static herr_t H5I_init_interface(void); static H5I_id_info_t *H5I_find_id(hid_t id); +static hid_t H5I_get_file_id(hid_t obj_id); #ifdef H5I_DEBUG_OUTPUT static herr_t H5I_debug(H5I_type_t grp); #endif /* H5I_DEBUG_OUTPUT */ @@ -842,7 +843,7 @@ done: * *------------------------------------------------------------------------- */ -hid_t +static hid_t H5I_get_file_id(hid_t obj_id) { H5G_entry_t *ent; |