diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-05-20 05:48:09 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-05-20 05:48:09 (GMT) |
commit | 0fcfcf0fa4c1fe58301f3fe42f9b887bddf79ed1 (patch) | |
tree | 1313736c19058b1bc5cf0ba6a28f31113d33195e /src/H5B2stat.c | |
parent | 15bc329ddb8fb9c5d3bcd9869a384f813e7d21b2 (diff) | |
download | hdf5-0fcfcf0fa4c1fe58301f3fe42f9b887bddf79ed1.zip hdf5-0fcfcf0fa4c1fe58301f3fe42f9b887bddf79ed1.tar.gz hdf5-0fcfcf0fa4c1fe58301f3fe42f9b887bddf79ed1.tar.bz2 |
[svn-r13773] Description:
Reduce compiler warnings w/gcc 4.2
Tested on:
FreeBSD/32 6.2 (duty) w/gcc 4.2
Diffstat (limited to 'src/H5B2stat.c')
-rw-r--r-- | src/H5B2stat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5B2stat.c b/src/H5B2stat.c index 5d77dfa..899bb8a 100644 --- a/src/H5B2stat.c +++ b/src/H5B2stat.c @@ -99,11 +99,11 @@ H5B2_stat_info(H5F_t *f, hid_t dxpl_id, const H5B2_class_t *type, HDassert(info); /* Look up the B-tree header */ - if(NULL == (bt2 = H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_READ))) + if(NULL == (bt2 = (H5B2_t *)H5AC_protect(f, dxpl_id, H5AC_BT2_HDR, addr, type, NULL, H5AC_READ))) HGOTO_ERROR(H5E_BTREE, H5E_CANTPROTECT, FAIL, "unable to load B-tree header") /* Get pointer to reference counted shared B-tree info */ - shared = H5RC_GET_OBJ(bt2->shared); + shared = (H5B2_shared_t *)H5RC_GET_OBJ(bt2->shared); /* Get information about the B-tree */ info->depth = shared->depth; |