diff options
Diffstat (limited to 'tools/h5dump/h5dump.c')
-rw-r--r-- | tools/h5dump/h5dump.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tools/h5dump/h5dump.c b/tools/h5dump/h5dump.c index 4667e72..892aa36 100644 --- a/tools/h5dump/h5dump.c +++ b/tools/h5dump/h5dump.c @@ -1093,7 +1093,7 @@ dump_dataspace(hid_t space) *------------------------------------------------------------------------- */ static herr_t -dump_attr(hid_t attr, const char *attr_name, void * UNUSED op_data) +dump_attr(hid_t attr, const char *attr_name, void UNUSED *op_data) { hid_t attr_id, type, space; herr_t ret = SUCCEED; @@ -1973,7 +1973,7 @@ set_output_file(const char *fname) *------------------------------------------------------------------------- */ static void -handle_attributes(hid_t fid, char *attr, void * UNUSED data) +handle_attributes(hid_t fid, char *attr, void UNUSED *data) { dump_selected_attr(fid, attr); } @@ -2233,7 +2233,7 @@ handle_datasets(hid_t fid, char *dset, void *data) *------------------------------------------------------------------------- */ static void -handle_groups(hid_t fid, char *group, void * UNUSED data) +handle_groups(hid_t fid, char *group, void UNUSED *data) { H5G_stat_t statbuf; hid_t gid; @@ -2278,7 +2278,7 @@ handle_groups(hid_t fid, char *group, void * UNUSED data) *------------------------------------------------------------------------- */ static void -handle_links(hid_t fid, char *links, void * UNUSED data) +handle_links(hid_t fid, char *links, void UNUSED *data) { H5G_stat_t statbuf; @@ -2334,7 +2334,7 @@ handle_links(hid_t fid, char *links, void * UNUSED data) *------------------------------------------------------------------------- */ static void -handle_datatypes(hid_t fid, char *type, void * UNUSED data) +handle_datatypes(hid_t fid, char *type, void UNUSED *data) { hid_t type_id; @@ -3162,7 +3162,7 @@ lookup_ref_path(hobj_ref_t * ref) *------------------------------------------------------------------------- */ static herr_t -fill_ref_path_table(hid_t group, const char *name, void * UNUSED op_data) +fill_ref_path_table(hid_t group, const char *name, void UNUSED *op_data) { hid_t obj; char *tmp; @@ -3937,7 +3937,7 @@ xml_dump_dataspace(hid_t space) *------------------------------------------------------------------------- */ static void -xml_dump_data(hid_t obj_id, int obj_data, struct subset_t * UNUSED sset) +xml_dump_data(hid_t obj_id, int obj_data, struct subset_t UNUSED *sset) { h5dump_t *outputformat = &xml_dataformat; int status = -1; @@ -4041,7 +4041,7 @@ xml_dump_data(hid_t obj_id, int obj_data, struct subset_t * UNUSED sset) *------------------------------------------------------------------------- */ static herr_t -xml_dump_attr(hid_t attr, const char *attr_name, void * UNUSED op_data) +xml_dump_attr(hid_t attr, const char *attr_name, void UNUSED *op_data) { hid_t attr_id, type, space; char *t_aname = xml_escape_the_name(attr_name); @@ -4688,7 +4688,7 @@ check_compression(hid_t dcpl) *------------------------------------------------------------------------- */ static void -xml_dump_dataset(hid_t did, const char *name, struct subset_t * UNUSED sset) +xml_dump_dataset(hid_t did, const char *name, struct subset_t UNUSED *sset) { hid_t type, space; hid_t dcpl; |