summaryrefslogtreecommitdiffstats
path: root/src/H5HGcache.c
diff options
context:
space:
mode:
authorMohamad Chaarawi <chaarawi@hdfgroup.org>2015-06-03 14:14:29 (GMT)
committerMohamad Chaarawi <chaarawi@hdfgroup.org>2015-06-03 14:14:29 (GMT)
commitc34e8ef85220b70d3eeed352b4320710f74f4cf9 (patch)
treea3fa038f07c5d68a11bbabd8849422c2eedffd5c /src/H5HGcache.c
parent9e96a8a0d691db8207ea2e6bfca66510e035c312 (diff)
parentfc45d5fcb05fbf1b9ee05a46a25afc6fd6c40503 (diff)
downloadhdf5-c34e8ef85220b70d3eeed352b4320710f74f4cf9.zip
hdf5-c34e8ef85220b70d3eeed352b4320710f74f4cf9.tar.gz
hdf5-c34e8ef85220b70d3eeed352b4320710f74f4cf9.tar.bz2
[svn-r27141] merge from trunk.
Diffstat (limited to 'src/H5HGcache.c')
-rw-r--r--src/H5HGcache.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/H5HGcache.c b/src/H5HGcache.c
index 4e3f568..f1b5fc6 100644
--- a/src/H5HGcache.c
+++ b/src/H5HGcache.c
@@ -64,7 +64,7 @@
/* Metadata cache callbacks */
static H5HG_heap_t *H5HG_load(H5F_t *f, hid_t dxpl_id, haddr_t addr, void *udata);
static herr_t H5HG_flush(H5F_t *f, hid_t dxpl_id, hbool_t dest, haddr_t addr,
- H5HG_heap_t *heap, unsigned UNUSED * flags_ptr);
+ H5HG_heap_t *heap, unsigned H5_ATTR_UNUSED * flags_ptr);
static herr_t H5HG_dest(H5F_t *f, H5HG_heap_t *heap);
static herr_t H5HG_clear(H5F_t *f, H5HG_heap_t *heap, hbool_t destroy);
static herr_t H5HG_size(const H5F_t *f, const H5HG_heap_t *heap, size_t *size_ptr);
@@ -280,7 +280,7 @@ done:
*-------------------------------------------------------------------------
*/
static herr_t
-H5HG_flush(H5F_t *f, hid_t dxpl_id, hbool_t destroy, haddr_t addr, H5HG_heap_t *heap, unsigned UNUSED * flags_ptr)
+H5HG_flush(H5F_t *f, hid_t dxpl_id, hbool_t destroy, haddr_t addr, H5HG_heap_t *heap, unsigned H5_ATTR_UNUSED * flags_ptr)
{
herr_t ret_value = SUCCEED; /* Return value */
@@ -401,7 +401,7 @@ done:
*-------------------------------------------------------------------------
*/
static herr_t
-H5HG_size(const H5F_t UNUSED *f, const H5HG_heap_t *heap, size_t *size_ptr)
+H5HG_size(const H5F_t H5_ATTR_UNUSED *f, const H5HG_heap_t *heap, size_t *size_ptr)
{
FUNC_ENTER_NOAPI_NOINIT_NOERR