summaryrefslogtreecommitdiffstats
path: root/src/H5B2pkg.h
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2010-04-23 18:11:37 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2010-04-23 18:11:37 (GMT)
commit55f2a52191fcbf38d67b698f90e2c876f1b39d02 (patch)
tree9d1d85c6480a548c5ae2ff1046f3a57fd1222352 /src/H5B2pkg.h
parent40c757d48b5fcdf0c217ae6392fb111b1a4acc91 (diff)
downloadhdf5-55f2a52191fcbf38d67b698f90e2c876f1b39d02.zip
hdf5-55f2a52191fcbf38d67b698f90e2c876f1b39d02.tar.gz
hdf5-55f2a52191fcbf38d67b698f90e2c876f1b39d02.tar.bz2
[svn-r18622] Description:
Bring r18621 from trunk to 1.8 branch: 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/H5B2pkg.h')
-rw-r--r--src/H5B2pkg.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5B2pkg.h b/src/H5B2pkg.h
index dd8f67b..f2f4e61 100644
--- a/src/H5B2pkg.h
+++ b/src/H5B2pkg.h
@@ -53,7 +53,7 @@
/* Size of a internal node pointer (on disk) */
#define H5B2_INT_POINTER_SIZE(h, d) ( \
- (h)->sizeof_addr /* Address of child node */ \
+ (unsigned)(h)->sizeof_addr /* Address of child node */ \
+ (h)->max_nrec_size /* # of records in child node */ \
+ (h)->node_info[(d) - 1].cum_max_nrec_size /* Total # of records in child & below */ \
)