diff options
author | Quincey Koziol <koziol@hdfgroup.org> | 2007-06-15 17:52:25 (GMT) |
---|---|---|
committer | Quincey Koziol <koziol@hdfgroup.org> | 2007-06-15 17:52:25 (GMT) |
commit | 40160d4d740ff706520b396fd9367089e8e4e2a2 (patch) | |
tree | eeac17c555696cc94dcbc9493629a056ee6ccd39 /src/H5Sprivate.h | |
parent | 71c91c6e85219d325c23ef8f71ff0af23989c0da (diff) | |
download | hdf5-40160d4d740ff706520b396fd9367089e8e4e2a2.zip hdf5-40160d4d740ff706520b396fd9367089e8e4e2a2.tar.gz hdf5-40160d4d740ff706520b396fd9367089e8e4e2a2.tar.bz2 |
[svn-r13870] Description:
Fix writing variable-length datatype fill values for contiguous dataset
storage
Tested on:
Mac OS X/32 10.4.9 (amazon)
Linux/32 2.6 (chicago)
Linux/64 2.6 (chicago2)
Diffstat (limited to 'src/H5Sprivate.h')
-rw-r--r-- | src/H5Sprivate.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/H5Sprivate.h b/src/H5Sprivate.h index 4a40bee..1892e18 100644 --- a/src/H5Sprivate.h +++ b/src/H5Sprivate.h @@ -224,8 +224,8 @@ H5_DLL herr_t H5S_select_deserialize(H5S_t *space, const uint8_t *buf); H5_DLL H5S_sel_type H5S_get_select_type(const H5S_t *space); H5_DLL herr_t H5S_select_iterate(void *buf, hid_t type_id, const H5S_t *space, H5D_operator_t op, void *operator_data); -H5_DLL herr_t H5S_select_fill(void *fill, size_t fill_size, const H5S_t *space, - void *buf); +H5_DLL herr_t H5S_select_fill(const void *fill, size_t fill_size, + const H5S_t *space, void *buf); H5_DLL htri_t H5S_select_valid(const H5S_t *space); H5_DLL hssize_t H5S_get_select_npoints(const H5S_t *space); H5_DLL herr_t H5S_get_select_bounds(const H5S_t *space, hsize_t *start, hsize_t *end); |