diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-07-12 23:25:49 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2018-07-12 23:25:49 (GMT) |
commit | 92bf81a0fbad8e263c1e0d3c5791f49b78046afb (patch) | |
tree | 5e4d43ce6e3bd409a6c5fa51d8510e70230b108a /tools/test/h5dump | |
parent | d1f8ac331222351a63147ab54271ac9d5b271f0b (diff) | |
download | hdf5-92bf81a0fbad8e263c1e0d3c5791f49b78046afb.zip hdf5-92bf81a0fbad8e263c1e0d3c5791f49b78046afb.tar.gz hdf5-92bf81a0fbad8e263c1e0d3c5791f49b78046afb.tar.bz2 |
Changes based on feedback from pull request.
Diffstat (limited to 'tools/test/h5dump')
-rw-r--r-- | tools/test/h5dump/h5dumpgentest.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/test/h5dump/h5dumpgentest.c b/tools/test/h5dump/h5dumpgentest.c index f34d479..9e9f6f1 100644 --- a/tools/test/h5dump/h5dumpgentest.c +++ b/tools/test/h5dump/h5dumpgentest.c @@ -10494,8 +10494,8 @@ gent_err_attr_dspace() { hid_t fid = -1; /* File identifier */ hid_t fcpl = -1; /* File access property list */ - hid_t sid; /* Dataspace identifier */ - hid_t aid; /* Attribute identifier */ + hid_t sid = -1; /* Dataspace identifier */ + hid_t aid = -1; /* Attribute identifier */ hsize_t dims = 2; /* Dimensino size */ int wdata[2] = {7, 42}; /* The buffer to write */ int fd = -1; /* The file descriptor */ |