summaryrefslogtreecommitdiffstats
path: root/src/H5FDdirect.c
diff options
context:
space:
mode:
authorQuincey Koziol <koziol@hdfgroup.org>2018-12-20 16:19:19 (GMT)
committerQuincey Koziol <koziol@hdfgroup.org>2018-12-20 16:19:19 (GMT)
commit2bbd1589fee5b92f5aee8e1da1e725202ae93885 (patch)
treeca16f2a33d4f00f95f99d89554460f944d8e3e2e /src/H5FDdirect.c
parent9810526a89b1f91d441ccce6c6ca484778f99b33 (diff)
downloadhdf5-2bbd1589fee5b92f5aee8e1da1e725202ae93885.zip
hdf5-2bbd1589fee5b92f5aee8e1da1e725202ae93885.tar.gz
hdf5-2bbd1589fee5b92f5aee8e1da1e725202ae93885.tar.bz2
Correct typo
Diffstat (limited to 'src/H5FDdirect.c')
-rw-r--r--src/H5FDdirect.c2
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