diff options
author | Quincey Koziol <koziol@lbl.gov> | 2018-12-20 16:45:27 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@lbl.gov> | 2018-12-20 16:45:27 (GMT) |
commit | 416f68c6709c9dd47620e89ac6c3a911e77e8b17 (patch) | |
tree | 9d99ee59b50f67eaab144bbbe0a6bb51c6198cfd | |
parent | 99e4c14ea6a164a1008e4c28da5529497eb50256 (diff) | |
parent | ac5a65bb43dbb00808f4867d8f106143364742ad (diff) | |
download | hdf5-416f68c6709c9dd47620e89ac6c3a911e77e8b17.zip hdf5-416f68c6709c9dd47620e89ac6c3a911e77e8b17.tar.gz hdf5-416f68c6709c9dd47620e89ac6c3a911e77e8b17.tar.bz2 |
Merge pull request #1401 in HDFFV/hdf5 from stackable_vol_fix_12 to develop
* commit 'ac5a65bb43dbb00808f4867d8f106143364742ad':
Correct typo
-rw-r--r-- | src/H5FDdirect.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5FDdirect.c b/src/H5FDdirect.c index 958f53c..d1a8fc8 100644 --- a/src/H5FDdirect.c +++ b/src/H5FDdirect.c @@ -418,7 +418,7 @@ static void * H5FD_direct_fapl_copy(const void *_old_fa) { const H5FD_direct_fapl_t *old_fa = (const H5FD_direct_fapl_t*)_old_fa; - H5FD_direct_fapl_t *new_fa = H5MM_calloc(1, sizeof(H5FD_direct_fapl_t)); + H5FD_direct_fapl_t *new_fa = H5MM_calloc(sizeof(H5FD_direct_fapl_t)); FUNC_ENTER_NOAPI_NOINIT_NOERR |