summaryrefslogtreecommitdiffstats
path: root/src/H5Gobj.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-03-10 16:37:53 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-03-10 16:37:53 (GMT)
commita42a1b15ef2cfd47cc696acf0487c35e07ecdcd3 (patch)
treef279be37845df0f2e7319976128c81d8d75400dc /src/H5Gobj.c
parent6cfd5c146267e771e46d37709c405c7732feeaf0 (diff)
downloadhdf5-a42a1b15ef2cfd47cc696acf0487c35e07ecdcd3.zip
hdf5-a42a1b15ef2cfd47cc696acf0487c35e07ecdcd3.tar.gz
hdf5-a42a1b15ef2cfd47cc696acf0487c35e07ecdcd3.tar.bz2
[svn-r13488] Description:
Remove unused "min. creation order" field from link info object header message. Tested on: FreeBSD/32 6.2 (duty) Mac OS X/32 10.4.8 (amazon)
Diffstat (limited to 'src/H5Gobj.c')
-rw-r--r--src/H5Gobj.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/H5Gobj.c b/src/H5Gobj.c
index 81dbf2d..07942c9 100644
--- a/src/H5Gobj.c
+++ b/src/H5Gobj.c
@@ -686,7 +686,6 @@ H5G_obj_info(H5O_loc_t *oloc, H5G_info_t *grp_info, hid_t dxpl_id)
if(H5O_msg_read(oloc, H5O_LINFO_ID, &linfo, dxpl_id)) {
/* Retrieve the information about the links */
grp_info->nlinks = linfo.nlinks;
- grp_info->min_corder = linfo.min_corder;
grp_info->max_corder = linfo.max_corder;
/* Check if the group is using compact or dense storage for its links */
@@ -705,7 +704,6 @@ H5G_obj_info(H5O_loc_t *oloc, H5G_info_t *grp_info, hid_t dxpl_id)
/* Set the other information about the group */
grp_info->storage_type = H5G_STORAGE_TYPE_SYMBOL_TABLE;
- grp_info->min_corder = 0;
grp_info->max_corder = 0;
} /* end else */
@@ -867,7 +865,7 @@ H5G_obj_remove_update_linfo(H5O_loc_t *oloc, H5O_linfo_t *linfo, hid_t dxpl_id)
/* Reset the creation order min/max if there's no more links in group */
if(linfo->nlinks == 0)
- linfo->min_corder = linfo->max_corder = 0;
+ linfo->max_corder = 0;
/* Check for transitioning out of dense storage, if we are using it */
if(H5F_addr_defined(linfo->link_fheap_addr)) {