From 72cf03cdbdce7b7bdfcac89c644129ca8ec39463 Mon Sep 17 00:00:00 2001 From: Quincey Koziol Date: Wed, 29 Sep 1999 19:01:55 -0500 Subject: [svn-r1694] Fixed various compiler warnings --- examples/h5_attribute.c | 2 +- examples/h5_group.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/h5_attribute.c b/examples/h5_attribute.c index fd41b0d..890cc3e 100644 --- a/examples/h5_attribute.c +++ b/examples/h5_attribute.c @@ -198,7 +198,7 @@ main (void) * Operator function. */ herr_t -attr_info(hid_t loc_id, const char *name, void *opdata) +attr_info(hid_t loc_id, const char *name, void UNUSED *opdata) { hid_t attr, atype, aspace; /* Attribute, datatype and dataspace identifiers */ int rank; diff --git a/examples/h5_group.c b/examples/h5_group.c index 00f9426..f75bc36 100644 --- a/examples/h5_group.c +++ b/examples/h5_group.c @@ -151,7 +151,7 @@ main(void) /* * Operator function. */ -herr_t file_info(hid_t loc_id, const char *name, void *opdata) +herr_t file_info(hid_t UNUSED loc_id, const char *name, void UNUSED *opdata) { /* * Display group name. The name is passed to the function by @@ -168,7 +168,7 @@ herr_t file_info(hid_t loc_id, const char *name, void *opdata) /* * Operator function. */ -herr_t group_info(hid_t loc_id, const char *name, void *opdata) +herr_t group_info(hid_t loc_id, const char *name, void UNUSED *opdata) { hid_t did; /* dataset identifier */ hid_t tid; /* datatype identifier */ -- cgit v0.12