summaryrefslogtreecommitdiffstats
path: root/src/H5Gobj.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2007-04-11 15:36:06 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2007-04-11 15:36:06 (GMT)
commit78158e8dbffcbf025257a72bb42c1fbe8c7660b7 (patch)
tree5947882877f5cbdee8b70ccfb726e3adef27f8ae /src/H5Gobj.c
parent4e3029bf8286175909d678d67bf40f477402ba46 (diff)
downloadhdf5-78158e8dbffcbf025257a72bb42c1fbe8c7660b7.zip
hdf5-78158e8dbffcbf025257a72bb42c1fbe8c7660b7.tar.gz
hdf5-78158e8dbffcbf025257a72bb42c1fbe8c7660b7.tar.bz2
[svn-r13635] Description:
Clean up code and reduce compiler warnings... Tested on: Mac OS X/32 10.4.9 (amazon)
Diffstat (limited to 'src/H5Gobj.c')
-rw-r--r--src/H5Gobj.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Gobj.c b/src/H5Gobj.c
index e91b162..9c8b8e6 100644
--- a/src/H5Gobj.c
+++ b/src/H5Gobj.c
@@ -333,7 +333,7 @@ H5G_obj_get_linfo(const H5O_loc_t *grp_oloc, H5O_linfo_t *linfo, hid_t dxpl_id)
HDassert(grp_oloc);
/* Retrieve the "link info" structure */
- if(ret_value = H5O_msg_read(grp_oloc, H5O_LINFO_ID, linfo, dxpl_id)) {
+ if((ret_value = H5O_msg_read(grp_oloc, H5O_LINFO_ID, linfo, dxpl_id))) {
/* Check if we don't know how many links there are */
if(ret_value->nlinks == HSIZET_MAX) {
/* Check if we are using "dense" link storage */