diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-27 20:06:15 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2010-04-27 20:06:15 (GMT) |
commit | 9542a0e21258dc9a6cddd2768312e66a4e9e2e12 (patch) | |
tree | 4b526763329c509ca81efe7384bfd79d2a286a25 /src/H5Fsuper.c | |
parent | 451887585360c787dec42da3ffdb65c519e6ef02 (diff) | |
download | hdf5-9542a0e21258dc9a6cddd2768312e66a4e9e2e12.zip hdf5-9542a0e21258dc9a6cddd2768312e66a4e9e2e12.tar.gz hdf5-9542a0e21258dc9a6cddd2768312e66a4e9e2e12.tar.bz2 |
[svn-r18639] Description:
Bring r18619:18638 from trunk to revise_chunks branch.
Tested on:
FreeBSD/32 6.3 (duty) w/debug
(h5committest not required on this branch)
Diffstat (limited to 'src/H5Fsuper.c')
-rw-r--r-- | src/H5Fsuper.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Fsuper.c b/src/H5Fsuper.c index 7698654..f6aa1ac 100644 --- a/src/H5Fsuper.c +++ b/src/H5Fsuper.c @@ -459,7 +459,7 @@ H5F_super_init(H5F_t *f, hid_t dxpl_id) sblock->super_vers = super_vers; /* Compute the size of the superblock */ - superblock_size = (size_t)H5F_SUPERBLOCK_SIZE(super_vers, f); + superblock_size = (hsize_t)H5F_SUPERBLOCK_SIZE(super_vers, f); /* Compute the size of the driver information block */ H5_ASSIGN_OVERFLOW(driver_size, H5FD_sb_size(f->shared->lf), hsize_t, size_t); @@ -723,7 +723,7 @@ H5F_super_size(H5F_t *f, hid_t dxpl_id, hsize_t *super_size, hsize_t *super_ext_ /* Set the superblock size */ if(super_size) - *super_size = (size_t)H5F_SUPERBLOCK_SIZE(f->shared->sblock->super_vers, f); + *super_size = (hsize_t)H5F_SUPERBLOCK_SIZE(f->shared->sblock->super_vers, f); /* Set the superblock extension size */ if(super_ext_size) { |