summaryrefslogtreecommitdiffstats
path: root/src/H5Dpublic.h
diff options
context:
space:
mode:
authorMark Kittisopikul <mkitti@users.noreply.github.com>2022-12-19 23:13:43 (GMT)
committerGitHub <noreply@github.com>2022-12-19 23:13:43 (GMT)
commitb9244a85d9f1cc5e9bbec61ca73c0cbd9c4cf249 (patch)
tree8c047d5f443217bfa28b77846fa85788e2344b70 /src/H5Dpublic.h
parent70cf2c390bc2eef8e57f8fa023341011e2d02d9d (diff)
downloadhdf5-b9244a85d9f1cc5e9bbec61ca73c0cbd9c4cf249.zip
hdf5-b9244a85d9f1cc5e9bbec61ca73c0cbd9c4cf249.tar.gz
hdf5-b9244a85d9f1cc5e9bbec61ca73c0cbd9c4cf249.tar.bz2
Align arg types of H5D_chunk_iter_op_t with H5Dget_chunk_info (#2074)
* Align arg types of H5D_chunk_iter_op_t with H5Dget_chunk_info * Modify chunk_info test to for unsigned / hsize_t types * Fix types in test
Diffstat (limited to 'src/H5Dpublic.h')
-rw-r--r--src/H5Dpublic.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Dpublic.h b/src/H5Dpublic.h
index ac76bc8..f7d208d 100644
--- a/src/H5Dpublic.h
+++ b/src/H5Dpublic.h
@@ -238,7 +238,7 @@ typedef herr_t (*H5D_gather_func_t)(const void *dst_buf, size_t dst_buf_bytes_us
* \li A negative (#H5_ITER_ERROR) causes the iterator to immediately
* return that value, indicating failure.
*/
-typedef int (*H5D_chunk_iter_op_t)(const hsize_t *offset, uint32_t filter_mask, haddr_t addr, uint32_t size,
+typedef int (*H5D_chunk_iter_op_t)(const hsize_t *offset, unsigned filter_mask, haddr_t addr, hsize_t size,
void *op_data);
//! <!-- [H5D_chunk_iter_op_t_snip] -->