diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2011-04-12 16:59:33 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2011-04-12 16:59:33 (GMT) |
commit | e4c6ef2f06a9e85ab7485eaab6b4b5fad699c8e3 (patch) | |
tree | 51db953096306b494651d0c794e5110a98d96259 /src/H5B2cache.c | |
parent | 9af7a65b4fb46cb61df85eeff49a3ba0f018d863 (diff) | |
download | hdf5-e4c6ef2f06a9e85ab7485eaab6b4b5fad699c8e3.zip hdf5-e4c6ef2f06a9e85ab7485eaab6b4b5fad699c8e3.tar.gz hdf5-e4c6ef2f06a9e85ab7485eaab6b4b5fad699c8e3.tar.bz2 |
[svn-r20480] Description:
Remove global variable for the path name in the group traversal code. Also
clean up a bunch of compiler warnings.
Tested on:
Mac OS X/32 10.6.7 (amazon) w/debug & production
FreeBSD/32 6.3 (duty) w/debug
FreeBSD/64 6.3 (liberty) w/debug
Solaris/32 2.7 (linew) w/debug
Diffstat (limited to 'src/H5B2cache.c')
-rw-r--r-- | src/H5B2cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5B2cache.c b/src/H5B2cache.c index 6a3b5da..f47bb9f 100644 --- a/src/H5B2cache.c +++ b/src/H5B2cache.c @@ -833,7 +833,7 @@ H5B2_cache_internal_size(const H5F_t UNUSED *f, const H5B2_internal_t *internal, *------------------------------------------------------------------------- */ static H5B2_leaf_t * -H5B2_cache_leaf_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *_udata) +H5B2_cache_leaf_load(H5F_t UNUSED *f, hid_t dxpl_id, haddr_t addr, void *_udata) { H5B2_leaf_cache_ud_t *udata = (H5B2_leaf_cache_ud_t *)_udata; H5B2_leaf_t *leaf = NULL; /* Pointer to lead node loaded */ |