summaryrefslogtreecommitdiffstats
path: root/examples/h5_group.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>1999-10-09 00:34:04 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>1999-10-09 00:34:04 (GMT)
commitacc0841fe5c2623545cf061fbc77cb98ca2fd799 (patch)
tree7fa137c8acf175be242ebf5b50b05821f09b919d /examples/h5_group.c
parentf5db00939a997fe507cccc4de0440d7fd381a12e (diff)
downloadhdf5-acc0841fe5c2623545cf061fbc77cb98ca2fd799.zip
hdf5-acc0841fe5c2623545cf061fbc77cb98ca2fd799.tar.gz
hdf5-acc0841fe5c2623545cf061fbc77cb98ca2fd799.tar.bz2
[svn-r1738] Took out the "UNUSED" macros from the parameter lists, they were confusing the
HP compiler.
Diffstat (limited to 'examples/h5_group.c')
-rw-r--r--examples/h5_group.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/h5_group.c b/examples/h5_group.c
index f75bc36..00f9426 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 UNUSED loc_id, const char *name, void UNUSED *opdata)
+herr_t file_info(hid_t loc_id, const char *name, void *opdata)
{
/*
* Display group name. The name is passed to the function by
@@ -168,7 +168,7 @@ herr_t file_info(hid_t UNUSED loc_id, const char *name, void UNUSED *opdata)
/*
* Operator function.
*/
-herr_t group_info(hid_t loc_id, const char *name, void UNUSED *opdata)
+herr_t group_info(hid_t loc_id, const char *name, void *opdata)
{
hid_t did; /* dataset identifier */
hid_t tid; /* datatype identifier */