diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 1999-10-09 00:34:04 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 1999-10-09 00:34:04 (GMT) |
commit | acc0841fe5c2623545cf061fbc77cb98ca2fd799 (patch) | |
tree | 7fa137c8acf175be242ebf5b50b05821f09b919d /examples/h5_attribute.c | |
parent | f5db00939a997fe507cccc4de0440d7fd381a12e (diff) | |
download | hdf5-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_attribute.c')
-rw-r--r-- | examples/h5_attribute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/h5_attribute.c b/examples/h5_attribute.c index 890cc3e..fd41b0d 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 UNUSED *opdata) +attr_info(hid_t loc_id, const char *name, void *opdata) { hid_t attr, atype, aspace; /* Attribute, datatype and dataspace identifiers */ int rank; |