diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2011-02-05 23:31:02 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2011-02-05 23:31:02 (GMT) |
commit | 299ac26d98a27cb309c87eafeb0ff7ac53eeb94b (patch) | |
tree | bcd48f00faa2410605c9a0cfbbf4a281cafd9076 /src/H5FScache.c | |
parent | c087ecdbdea8f142f1a4823db71ea47fa60a8c59 (diff) | |
download | hdf5-299ac26d98a27cb309c87eafeb0ff7ac53eeb94b.zip hdf5-299ac26d98a27cb309c87eafeb0ff7ac53eeb94b.tar.gz hdf5-299ac26d98a27cb309c87eafeb0ff7ac53eeb94b.tar.bz2 |
[svn-r20050] Description:
Bring sec2 and log VFDs back into agreement. Correct several compiler
warnings. Also add some additional statistics to the log VFD and promote the
parameter for H5Pset_fapl_log from 'unsigned' to 'unsigned long long'.
Tested on:
Mac OS X/32 10.6.6 (amazon) w/debug & production
FreeBSD/32 8.2 (loyalty) w/debug
FreeBSD/64 8.2 (freedom) w/debug
Diffstat (limited to 'src/H5FScache.c')
-rw-r--r-- | src/H5FScache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FScache.c b/src/H5FScache.c index 17f8f6a..d1c8a2a 100644 --- a/src/H5FScache.c +++ b/src/H5FScache.c @@ -555,7 +555,7 @@ H5FS_cache_hdr_size(const H5F_t UNUSED *f, const H5FS_t *fspace, size_t *size_pt *------------------------------------------------------------------------- */ static H5FS_sinfo_t * -H5FS_cache_sinfo_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *_udata) +H5FS_cache_sinfo_load(H5F_t *f, hid_t dxpl_id, haddr_t UNUSED addr, void *_udata) { H5FS_sinfo_t *sinfo = NULL; /* Free space section info */ H5FS_sinfo_cache_ud_t *udata = (H5FS_sinfo_cache_ud_t *)_udata; /* user data for callback */ |