diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2016-07-07 18:54:11 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2016-07-07 18:54:11 (GMT) |
commit | ec2fbe0883f9e76df60bcfbebbd4b6f62d5a09e6 (patch) | |
tree | bd27f9b92053818b5d83de373dfcadbbbc892ee2 /src/H5FSstat.c | |
parent | 3e5a61c9ff7a22589dbb2fc71f95f32f919c8b54 (diff) | |
download | hdf5-ec2fbe0883f9e76df60bcfbebbd4b6f62d5a09e6.zip hdf5-ec2fbe0883f9e76df60bcfbebbd4b6f62d5a09e6.tar.gz hdf5-ec2fbe0883f9e76df60bcfbebbd4b6f62d5a09e6.tar.bz2 |
[svn-r30158] Description:
More warning cleanups. This brings us down to ~1300 warnings in 167 files
Tested on:
MacOSX/64 10.11.5 (amazon) w/serial & parallel
(h5committest forthcoming)
Diffstat (limited to 'src/H5FSstat.c')
-rw-r--r-- | src/H5FSstat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FSstat.c b/src/H5FSstat.c index d2c0177..3200849 100644 --- a/src/H5FSstat.c +++ b/src/H5FSstat.c @@ -96,7 +96,7 @@ H5FS_stat_info(const H5F_t *f, const H5FS_t *frsp, H5FS_stat_t *stats) stats->serial_sect_count = frsp->serial_sect_count; stats->ghost_sect_count = frsp->ghost_sect_count; stats->addr = frsp->addr; - stats->hdr_size = (size_t)H5FS_HEADER_SIZE(f); + stats->hdr_size = (hsize_t)H5FS_HEADER_SIZE(f); stats->sect_addr = frsp->sect_addr; stats->alloc_sect_size = frsp->alloc_sect_size; stats->sect_size = frsp->sect_size; |