From 4fe4394c5856336345efd2e7293d703c9bfc6d1b Mon Sep 17 00:00:00 2001 From: Dana Robinson Date: Mon, 30 Apr 2018 15:04:45 -0700 Subject: Fixed a warning. --- src/H5Dio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/H5Dio.c b/src/H5Dio.c index 6dec5b0..b1117e9 100644 --- a/src/H5Dio.c +++ b/src/H5Dio.c @@ -410,7 +410,7 @@ H5Dwrite_chunk(hid_t dset_id, hid_t dxpl_id, uint32_t filters, const hsize_t *of internal_offset[dset->shared->ndims] = 0; /* Write chunk */ - if (H5D__chunk_direct_write(dset, filters, internal_offset, data_size, buf) < 0) + if (H5D__chunk_direct_write(dset, filters, internal_offset, data_size_32, buf) < 0) HGOTO_ERROR(H5E_DATASET, H5E_WRITEERROR, FAIL, "can't write unprocessed chunk data") done: -- cgit v0.12