diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-22 17:48:24 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2002-04-22 17:48:24 (GMT) |
commit | e5fc40662c6520edc50c7e68c96e24eb766972f2 (patch) | |
tree | c619f15e55b290c16fc082da15746864ba7c5b81 /src/H5Gnode.c | |
parent | 7527ed7d6f3d122e2b00e919c4a8d993b1e196be (diff) | |
download | hdf5-e5fc40662c6520edc50c7e68c96e24eb766972f2.zip hdf5-e5fc40662c6520edc50c7e68c96e24eb766972f2.tar.gz hdf5-e5fc40662c6520edc50c7e68c96e24eb766972f2.tar.bz2 |
[svn-r5219] Purpose:
Code cleanup
Description:
Clean up warnings from gcc 3.1
Platforms tested:
FreeBSD 4.5 (sleipnir)
Diffstat (limited to 'src/H5Gnode.c')
-rw-r--r-- | src/H5Gnode.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5Gnode.c b/src/H5Gnode.c index 2662165..d4b3df2 100644 --- a/src/H5Gnode.c +++ b/src/H5Gnode.c @@ -130,7 +130,7 @@ H5FL_BLK_DEFINE_STATIC(symbol_node); *------------------------------------------------------------------------- */ static size_t -H5G_node_sizeof_rkey(H5F_t *f, const void * UNUSED udata) +H5G_node_sizeof_rkey(H5F_t *f, const void UNUSED * udata) { return H5F_SIZEOF_SIZE(f); /*the name offset */ } @@ -627,8 +627,8 @@ H5G_node_cmp3(H5F_t *f, void *_lt_key, void *_udata, void *_rt_key) *------------------------------------------------------------------------- */ static herr_t -H5G_node_found(H5F_t *f, haddr_t addr, const void * UNUSED _lt_key, - void *_udata, const void * UNUSED _rt_key) +H5G_node_found(H5F_t *f, haddr_t addr, const void UNUSED *_lt_key, + void *_udata, const void UNUSED *_rt_key) { H5G_bt_ud1_t *bt_udata = (H5G_bt_ud1_t *) _udata; H5G_node_t *sn = NULL; |