summaryrefslogtreecommitdiffstats
path: root/src/H5Sprivate.h
diff options
context:
space:
mode:
authorDana Robinson <derobins@hdfgroup.org>2018-09-24 15:35:13 (GMT)
committerDana Robinson <derobins@hdfgroup.org>2018-09-24 15:35:13 (GMT)
commit30cd579a149acb063e258aac89bbe7fef3f5ac0a (patch)
tree044dc8b0060f3ba003ef40ba50977a892b636e6f /src/H5Sprivate.h
parent987bca5a34a09cd564445d53f58cf1e428e43276 (diff)
downloadhdf5-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/H5Sprivate.h')
-rw-r--r--src/H5Sprivate.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Sprivate.h b/src/H5Sprivate.h
index 15ce75d..32ac51a 100644
--- a/src/H5Sprivate.h
+++ b/src/H5Sprivate.h
@@ -259,7 +259,7 @@ H5_DLL herr_t H5S_select_serialize(const H5S_t *space, uint8_t **p);
H5_DLL htri_t H5S_select_is_contiguous(const H5S_t *space);
H5_DLL htri_t H5S_select_is_single(const H5S_t *space);
H5_DLL htri_t H5S_select_is_regular(const H5S_t *space);
-H5_DLL void H5S_select_adjust_u(H5S_t *space, const hsize_t *offset);
+H5_DLL herr_t H5S_select_adjust_u(H5S_t *space, const hsize_t *offset);
H5_DLL herr_t H5S_select_project_scalar(const H5S_t *space, hsize_t *offset);
H5_DLL herr_t H5S_select_project_simple(const H5S_t *space, H5S_t *new_space, hsize_t *offset);
H5_DLL herr_t H5S_select_project_intersection(const H5S_t *src_space,