summaryrefslogtreecommitdiffstats
path: root/src/H5B.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-04-23 17:23:12 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-04-23 17:23:12 (GMT)
commit43448681d8431f45bd48c4b2c183e5b21030ab8d (patch)
tree15e1ecdbfdecf1996338555189a3579021e4f4ef /src/H5B.c
parentd94581e19b6029d7839e41f882b6b453a87e249e (diff)
downloadhdf5-43448681d8431f45bd48c4b2c183e5b21030ab8d.zip
hdf5-43448681d8431f45bd48c4b2c183e5b21030ab8d.tar.gz
hdf5-43448681d8431f45bd48c4b2c183e5b21030ab8d.tar.bz2
[svn-r18621] Description:
Clean up compiler warnings. Tested on: Mac OS X/32 10.6.3 (amazon) w/debug (too minor to require h5committest)
Diffstat (limited to 'src/H5B.c')
-rw-r--r--src/H5B.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5B.c b/src/H5B.c
index e50c620..833e857 100644
--- a/src/H5B.c
+++ b/src/H5B.c
@@ -1718,7 +1718,7 @@ H5B_shared_new(const H5F_t *f, const H5B_class_t *type, size_t sizeof_rkey)
shared->sizeof_rkey = sizeof_rkey;
HDassert(shared->sizeof_rkey);
shared->sizeof_keys = (shared->two_k + 1) * type->sizeof_nkey;
- shared->sizeof_rnode = (H5B_SIZEOF_HDR(f) + /*node header */
+ shared->sizeof_rnode = ((size_t)H5B_SIZEOF_HDR(f) + /*node header */
shared->two_k * H5F_SIZEOF_ADDR(f) + /*child pointers */
(shared->two_k + 1) * shared->sizeof_rkey); /*keys */
HDassert(shared->sizeof_rnode);