diff options
author | Neil Fortner <nfortne2@hdfgroup.org> | 2015-04-21 22:42:33 (GMT) |
---|---|---|
committer | Neil Fortner <nfortne2@hdfgroup.org> | 2015-04-21 22:42:33 (GMT) |
commit | 0a3151792fed6457cbd8092018b891f7f2b9653e (patch) | |
tree | 669b2259efc2ce8c79e0563db08265e3904b48b9 /src/H5Sall.c | |
parent | b31103b33225c39fe0ddaa0c3fa1cdaae64f7cbc (diff) | |
download | hdf5-0a3151792fed6457cbd8092018b891f7f2b9653e.zip hdf5-0a3151792fed6457cbd8092018b891f7f2b9653e.tar.gz hdf5-0a3151792fed6457cbd8092018b891f7f2b9653e.tar.bz2 |
[svn-r26878] Fix errors in unlimited selection serialize/deserialize
Other minor fixes
Tested: jam
Diffstat (limited to 'src/H5Sall.c')
-rw-r--r-- | src/H5Sall.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Sall.c b/src/H5Sall.c index 505e4cf..cb7e6f2 100644 --- a/src/H5Sall.c +++ b/src/H5Sall.c @@ -38,7 +38,7 @@ static herr_t H5S_all_get_seq_list(const H5S_t *space, unsigned flags, size_t *nseq, size_t *nbytes, hsize_t *off, size_t *len); static herr_t H5S_all_release(H5S_t *space); static htri_t H5S_all_is_valid(const H5S_t *space); -static hssize_t H5S_all_serial_size(const H5S_t *space); +static hssize_t H5S_all_serial_size(const H5F_t *f, const H5S_t *space); static herr_t H5S_all_serialize(const H5F_t *f, const H5S_t *space, uint8_t **p); static herr_t H5S_all_deserialize(const H5F_t *f, H5S_t *space, @@ -478,7 +478,7 @@ H5S_all_is_valid (const H5S_t UNUSED *space) REVISION LOG --------------------------------------------------------------------------*/ static hssize_t -H5S_all_serial_size (const H5S_t UNUSED *space) +H5S_all_serial_size(const H5F_t UNUSED *f, const H5S_t UNUSED *space) { FUNC_ENTER_NOAPI_NOINIT_NOERR |