diff options
author | Dana Robinson <derobins@hdfgroup.org> | 2018-09-24 15:35:13 (GMT) |
---|---|---|
committer | Dana Robinson <derobins@hdfgroup.org> | 2018-09-24 15:35:13 (GMT) |
commit | 30cd579a149acb063e258aac89bbe7fef3f5ac0a (patch) | |
tree | 044dc8b0060f3ba003ef40ba50977a892b636e6f /src/H5Spkg.h | |
parent | 987bca5a34a09cd564445d53f58cf1e428e43276 (diff) | |
download | hdf5-30cd579a149acb063e258aac89bbe7fef3f5ac0a.zip hdf5-30cd579a149acb063e258aac89bbe7fef3f5ac0a.tar.gz hdf5-30cd579a149acb063e258aac89bbe7fef3f5ac0a.tar.bz2 |
H5S adjust callbacks now return an herr_t instead of void.
Diffstat (limited to 'src/H5Spkg.h')
-rw-r--r-- | src/H5Spkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Spkg.h b/src/H5Spkg.h index 6ded287..d895f40 100644 --- a/src/H5Spkg.h +++ b/src/H5Spkg.h @@ -161,7 +161,7 @@ typedef htri_t (*H5S_sel_is_single_func_t)(const H5S_t *space); /* Method to determine if current selection is "regular" */ typedef htri_t (*H5S_sel_is_regular_func_t)(const H5S_t *space); /* Method to adjust a selection by an offset */ -typedef void (*H5S_sel_adjust_u_func_t)(H5S_t *space, const hsize_t *offset); +typedef herr_t (*H5S_sel_adjust_u_func_t)(H5S_t *space, const hsize_t *offset); /* Method to construct single element projection onto scalar dataspace */ typedef herr_t (*H5S_sel_project_scalar)(const H5S_t *space, hsize_t *offset); /* Method to construct selection projection onto/into simple dataspace */ |