summaryrefslogtreecommitdiffstats
path: root/src/H5Oidxinfo.c
diff options
context:
space:
mode:
authorJerome Soumagne <jsoumagne@hdfgroup.org>2015-07-23 03:31:17 (GMT)
committerJerome Soumagne <jsoumagne@hdfgroup.org>2016-11-29 23:42:29 (GMT)
commit851aa79f6adead6b1959545dcd6091be7d1d760a (patch)
treef263ce5c2728630fe05295b6d87f45dc95ba2b00 /src/H5Oidxinfo.c
parentacdd7fe274adcd195c8f8ccfa3994b0516833b6a (diff)
downloadhdf5-851aa79f6adead6b1959545dcd6091be7d1d760a.zip
hdf5-851aa79f6adead6b1959545dcd6091be7d1d760a.tar.gz
hdf5-851aa79f6adead6b1959545dcd6091be7d1d760a.tar.bz2
Fixes after changes from UNUSED to H5_ATTR_UNUSED
Diffstat (limited to 'src/H5Oidxinfo.c')
-rw-r--r--src/H5Oidxinfo.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/H5Oidxinfo.c b/src/H5Oidxinfo.c
index ba58d05..5fb0901 100644
--- a/src/H5Oidxinfo.c
+++ b/src/H5Oidxinfo.c
@@ -86,8 +86,8 @@ const H5O_msg_class_t H5O_MSG_IDXINFO[1] = {{
*-------------------------------------------------------------------------
*/
static void *
-H5O_idxinfo_decode(H5F_t UNUSED *f, hid_t UNUSED dxpl_id, H5O_t UNUSED *open_oh,
- unsigned UNUSED mesg_flags, unsigned UNUSED *ioflags, const uint8_t *p)
+H5O_idxinfo_decode(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t H5_ATTR_UNUSED *open_oh,
+ unsigned H5_ATTR_UNUSED mesg_flags, unsigned H5_ATTR_UNUSED *ioflags, const uint8_t *p)
{
H5O_idxinfo_t *mesg;
void *ret_value; /* Return value */
@@ -134,7 +134,7 @@ done:
*-------------------------------------------------------------------------
*/
static herr_t
-H5O_idxinfo_encode(H5F_t *f, hbool_t UNUSED disable_shared, uint8_t *p,
+H5O_idxinfo_encode(H5F_t *f, hbool_t H5_ATTR_UNUSED disable_shared, uint8_t *p,
const void *_mesg)
{
const H5O_idxinfo_t *mesg = (const H5O_idxinfo_t *) _mesg;
@@ -213,7 +213,7 @@ done:
*-------------------------------------------------------------------------
*/
static size_t
-H5O_idxinfo_size(const H5F_t UNUSED *f, hbool_t UNUSED disable_shared, const void *_mesg)
+H5O_idxinfo_size(const H5F_t H5_ATTR_UNUSED *f, hbool_t H5_ATTR_UNUSED disable_shared, const void *_mesg)
{
const H5O_idxinfo_t *mesg = (const H5O_idxinfo_t *) _mesg;
size_t ret_value;
@@ -298,7 +298,7 @@ done:
*-------------------------------------------------------------------------
*/
static herr_t
-H5O_idxinfo_delete(H5F_t *f, hid_t UNUSED dxpl_id, H5O_t *open_oh, void *_mesg)
+H5O_idxinfo_delete(H5F_t *f, hid_t H5_ATTR_UNUSED dxpl_id, H5O_t *open_oh, void *_mesg)
{
hid_t file_id;
H5O_idxinfo_t *mesg = (H5O_idxinfo_t *) _mesg;
@@ -336,7 +336,7 @@ done:
*-------------------------------------------------------------------------
*/
static herr_t
-H5O_idxinfo_debug(H5F_t UNUSED *f, hid_t UNUSED dxpl_id, const void *_mesg, FILE *stream,
+H5O_idxinfo_debug(H5F_t H5_ATTR_UNUSED *f, hid_t H5_ATTR_UNUSED dxpl_id, const void *_mesg, FILE *stream,
int indent, int fwidth)
{
const H5O_idxinfo_t *mesg = (const H5O_idxinfo_t *)_mesg;