summaryrefslogtreecommitdiffstats
path: root/src/H5Aint.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/H5Aint.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/H5Aint.c')
-rw-r--r--src/H5Aint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Aint.c b/src/H5Aint.c
index 1af97d9..fd1e3cd 100644
--- a/src/H5Aint.c
+++ b/src/H5Aint.c
@@ -644,7 +644,7 @@ H5A_get_ainfo(H5F_t *f, hid_t dxpl_id, H5O_t *oh, H5O_ainfo_t *ainfo)
HDassert(oh);
/* Retrieve the "attribute info" structure */
- if(ret_value = H5O_msg_read_real(f, dxpl_id, oh, H5O_AINFO_ID, ainfo)) {
+ if((ret_value = H5O_msg_read_real(f, dxpl_id, oh, H5O_AINFO_ID, ainfo))) {
/* Check if we don't know how many attributes there are */
if(ret_value->nattrs == HSIZET_MAX) {
/* Check if we are using "dense" attribute storage */