[svn-r1694] Fixed various compiler warnings

This commit is contained in:
Quincey Koziol 1999-09-29 19:01:55 -05:00
parent f1917f0754
commit 72cf03cdbd
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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 */