diff options
author | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2017-04-03 22:45:25 (GMT) |
---|---|---|
committer | Vailin Choi <vchoi@jam.ad.hdfgroup.org> | 2017-04-03 22:45:25 (GMT) |
commit | e7c1ef33425e7cdcf4486b79e0b95e77a6110f30 (patch) | |
tree | 502cef6e53cc8c8eafddbeff9a75322130c876d2 /hl/src | |
parent | ea1bb348c5da7195e7767bad66707a0dd1c18de1 (diff) | |
download | hdf5-e7c1ef33425e7cdcf4486b79e0b95e77a6110f30.zip hdf5-e7c1ef33425e7cdcf4486b79e0b95e77a6110f30.tar.gz hdf5-e7c1ef33425e7cdcf4486b79e0b95e77a6110f30.tar.bz2 |
Made corrections according to code review.
1) Change fprintf to HDfprintf in hl/test/test_dset_opt.c
2) Remove extra line in src/H5Dpkg.h
3) Add one more test to hl/test/test_dset_opt.c
Tested on mayll and osx1010test.
Diffstat (limited to 'hl/src')
-rw-r--r-- | hl/src/H5DO.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hl/src/H5DO.c b/hl/src/H5DO.c index 151481e..be5f658 100644 --- a/hl/src/H5DO.c +++ b/hl/src/H5DO.c @@ -63,7 +63,7 @@ H5DOwrite_chunk(hid_t dset_id, hid_t dxpl_id, uint32_t filters, const hsize_t *o /* If the user passed in a default DXPL, create one to pass to H5Dwrite() */ if(H5P_DEFAULT == dxpl_id) { - if((dxpl_id = H5Pcreate(H5P_DATASET_XFER)) < 0) + if((dxpl_id = H5Pcreate(H5P_DATASET_XFER)) < 0) goto done; created_dxpl = TRUE; } /* end if */ |