summaryrefslogtreecommitdiffstats
path: root/src/H5O.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-04-22 13:20:21 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-04-22 13:20:21 (GMT)
commit7f08e6b1d93e06640f4353df32b28b4982aee260 (patch)
treef91408dc8041eb353c7479f99d89d69f1f6b0adc /src/H5O.c
parentfd9ed5d743dd862cb0575464dfc4fa6dd5983d22 (diff)
downloadhdf5-7f08e6b1d93e06640f4353df32b28b4982aee260.zip
hdf5-7f08e6b1d93e06640f4353df32b28b4982aee260.tar.gz
hdf5-7f08e6b1d93e06640f4353df32b28b4982aee260.tar.bz2
[svn-r18609] Description:
Bring r18608 from trunk to 1.8 branch: Simplify object header allocation routines, and clean up some compiler warnings. Tested on: FreeBSD/64 6.3 (liberty) w/C++ & FORTRAN, in debug mode (h5committested on trunk)
Diffstat (limited to 'src/H5O.c')
-rw-r--r--src/H5O.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5O.c b/src/H5O.c
index bf1de47..e93f1a1 100644
--- a/src/H5O.c
+++ b/src/H5O.c
@@ -1687,7 +1687,7 @@ H5O_protect(const H5O_loc_t *loc, hid_t dxpl_id, H5AC_protect_t prot)
#endif /* NDEBUG */
/* Bring the chunk into the cache */
- /* (which adds to the object header */
+ /* (which adds to the object header) */
chk_udata.chunk_size = cont_msg_info.msgs[curr_msg].size;
if(NULL == (chk_proxy = (H5O_chunk_proxy_t *)H5AC_protect(loc->file, dxpl_id, H5AC_OHDR_CHK, cont_msg_info.msgs[curr_msg].addr, NULL, &chk_udata, prot)))
HGOTO_ERROR(H5E_OHDR, H5E_CANTPROTECT, NULL, "unable to load object header chunk")