diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-03-19 19:55:42 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-03-19 19:55:42 (GMT) |
commit | 7fb0362eeda413222426613058a51282d25d0235 (patch) | |
tree | e7f8b8fdf45f79aa88fe1eba429fb2bc1732d2a9 /src/H5Tconv.c | |
parent | e45e85190bf33ce8f49e4b919cab6fa60d4ff967 (diff) | |
download | hdf5-7fb0362eeda413222426613058a51282d25d0235.zip hdf5-7fb0362eeda413222426613058a51282d25d0235.tar.gz hdf5-7fb0362eeda413222426613058a51282d25d0235.tar.bz2 |
[svn-r8266] Purpose: Internal function change
Description: The algorithm of H5T_bit_neg wasn't general enough.
Solution: Changed it to handle arbitory starting position and size
in a bit sequence.
Platforms tested: h5committest.
Diffstat (limited to 'src/H5Tconv.c')
-rw-r--r-- | src/H5Tconv.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/H5Tconv.c b/src/H5Tconv.c index bb66141..fde424c 100644 --- a/src/H5Tconv.c +++ b/src/H5Tconv.c @@ -8607,7 +8607,6 @@ H5T_conv_f_i (hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, hsize_t nelmts, */ if(sign) { H5T_bit_dec(int_buf, 0, 8*buf_size); - H5T_bit_neg(int_buf, 0, 8*buf_size); } |