summaryrefslogtreecommitdiffstats
path: root/examples/h5dsm_ttconv.c
diff options
context:
space:
mode:
authorNeil Fortner <nfortne2@hdfgroup.org>2017-05-21 21:28:26 (GMT)
committerNeil Fortner <nfortne2@hdfgroup.org>2017-05-21 21:28:26 (GMT)
commitd91d6d3a4c068424f60a0eb9671c4843f372b1d0 (patch)
treeb52d6874fd4f897b445412362dda91f4f2136f79 /examples/h5dsm_ttconv.c
parentde0682627b39a6af2009b001791ddce4c333db68 (diff)
downloadhdf5-d91d6d3a4c068424f60a0eb9671c4843f372b1d0.zip
hdf5-d91d6d3a4c068424f60a0eb9671c4843f372b1d0.tar.gz
hdf5-d91d6d3a4c068424f60a0eb9671c4843f372b1d0.tar.bz2
Add support for variable length types (not within compound or array, with no sub-type conversions) with attributes. Added h5dsm_tvlen.c to test this. Other minor fixes/cleanup.
Diffstat (limited to 'examples/h5dsm_ttconv.c')
-rw-r--r--examples/h5dsm_ttconv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/h5dsm_ttconv.c b/examples/h5dsm_ttconv.c
index 731573c..6b10d53 100644
--- a/examples/h5dsm_ttconv.c
+++ b/examples/h5dsm_ttconv.c
@@ -20,7 +20,7 @@ hbool_t verbose_g = 1;
int main(int argc, char *argv[]) {
uuid_t pool_uuid;
char *pool_grp = NULL;
- hid_t file = -1, dset = -1, dset_a = -1, dset_b = -1, dset_c = -1, dset2 = -1, attr = -1, attr_a = -1, attr_b = -1 , attr_c = -1, space = -1, space2 = -1, space2_contig, fapl = -1;
+ hid_t file = -1, dset = -1, dset_a = -1, dset_b = -1, dset_c = -1, dset2 = -1, attr = -1, attr_a = -1, attr_b = -1 , attr_c = -1, space = -1, space2 = -1, space2_contig = -1, fapl = -1;
hid_t file_type = -1, file_type_a = -1, file_type_b = -1, file_type_c = -1;
hid_t mem_type = -1, mem_type_conv = -1, mem_type_a = -1, mem_type_b = -1, mem_type_c = -1;
hsize_t dims[2] = {4, 2};