diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2006-08-23 18:28:17 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2006-08-23 18:28:17 (GMT) |
commit | fe2ae3efc70490289e69e27154a7eb2383f725bf (patch) | |
tree | 64aee8debe349065274bac04c9f16345f0358616 | |
parent | 9c30e7bba121b63c62b2d76c1c0353a5145bdd73 (diff) | |
download | hdf5-fe2ae3efc70490289e69e27154a7eb2383f725bf.zip hdf5-fe2ae3efc70490289e69e27154a7eb2383f725bf.tar.gz hdf5-fe2ae3efc70490289e69e27154a7eb2383f725bf.tar.bz2 |
[svn-r12620] Description:
Clean up some compiler warnings by removing "UNUSED" from function
prototypes.
Tested on:
Linux 2.? (tg-login3)
Too minor to require h5committest
-rw-r--r-- | test/cache_common.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/test/cache_common.c b/test/cache_common.c index a9a3f55..e7bc87c 100644 --- a/test/cache_common.c +++ b/test/cache_common.c @@ -200,12 +200,12 @@ const H5C_class_t types[NUMBER_OF_ENTRY_TYPES] = }; static herr_t clear(H5F_t * f, void * thing, hbool_t dest); -static herr_t destroy(H5F_t UNUSED * f, void * thing); -static herr_t flush(H5F_t *f, hid_t UNUSED dxpl_id, hbool_t dest, +static herr_t destroy(H5F_t * f, void * thing); +static herr_t flush(H5F_t *f, hid_t dxpl_id, hbool_t dest, haddr_t addr, void *thing); -static void * load(H5F_t UNUSED *f, hid_t UNUSED dxpl_id, haddr_t addr, - const void UNUSED *udata1, void UNUSED *udata2); -static herr_t size(H5F_t UNUSED * f, void * thing, size_t * size_ptr); +static void * load(H5F_t *f, hid_t dxpl_id, haddr_t addr, + const void *udata1, void *udata2); +static herr_t size(H5F_t * f, void * thing, size_t * size_ptr); |