diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-04-12 20:49:36 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-04-12 20:49:36 (GMT) |
commit | dfe9639c9bd2ec7a331a35a2d6de6dde833621c5 (patch) | |
tree | c2133b5c3bad3037483d69692a2709d07c6cff4d /src/H5Tpkg.h | |
parent | 7a73740dfd87a69b960992907a317c5d12e2cc55 (diff) | |
download | hdf5-dfe9639c9bd2ec7a331a35a2d6de6dde833621c5.zip hdf5-dfe9639c9bd2ec7a331a35a2d6de6dde833621c5.tar.gz hdf5-dfe9639c9bd2ec7a331a35a2d6de6dde833621c5.tar.bz2 |
[svn-r8344] Purpose: Internal function change
Description: H5T_bit_shift wasn't general enough to handle arbitory start, length.
Solution: Make it be so.
Platforms tested: h5committest
Diffstat (limited to 'src/H5Tpkg.h')
-rw-r--r-- | src/H5Tpkg.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tpkg.h b/src/H5Tpkg.h index 70a4f56..e3e6226 100644 --- a/src/H5Tpkg.h +++ b/src/H5Tpkg.h @@ -1070,7 +1070,7 @@ H5_DLL herr_t H5T_conv_i32le_f64le(hid_t src_id, hid_t dst_id, /* Bit twiddling functions */ H5_DLL void H5T_bit_copy(uint8_t *dst, size_t dst_offset, const uint8_t *src, size_t src_offset, size_t size); -H5_DLL void H5T_bit_shift(uint8_t *buf, ssize_t shift_dist, size_t buf_size); +H5_DLL void H5T_bit_shift(uint8_t *buf, ssize_t shift_dist, size_t offset, size_t size); H5_DLL void H5T_bit_set(uint8_t *buf, size_t offset, size_t size, hbool_t value); H5_DLL hsize_t H5T_bit_get_d(uint8_t *buf, size_t offset, size_t size); |