diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2005-02-25 20:26:32 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2005-02-25 20:26:32 (GMT) |
commit | 82ae8ac4e0ec0929e432c99361e68f5f60cb5553 (patch) | |
tree | 8efddab33d3eed5be9d584e70f55f8dddacfb1f2 /src/H5Tpublic.h | |
parent | cffc51b94c8536e89cab61e68b6122a0e186524a (diff) | |
download | hdf5-82ae8ac4e0ec0929e432c99361e68f5f60cb5553.zip hdf5-82ae8ac4e0ec0929e432c99361e68f5f60cb5553.tar.gz hdf5-82ae8ac4e0ec0929e432c99361e68f5f60cb5553.tar.bz2 |
[svn-r10087] Purpose: New feature and test
Description: Somehow, the hardware conversions between "long double" and other native floating-point
types were left out.
Solution: Added the hardware conversion functions in H5Tconv.c and test cases in dtypes.c.
Platforms tested: h5committest and fuss.
Misc. update: updated MANIFEST to replace bin/reconfigure.sh with bin/reconfigure
Diffstat (limited to 'src/H5Tpublic.h')
-rw-r--r-- | src/H5Tpublic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/H5Tpublic.h b/src/H5Tpublic.h index 5d1af95..ddec8bb 100644 --- a/src/H5Tpublic.h +++ b/src/H5Tpublic.h @@ -202,7 +202,7 @@ typedef herr_t (*H5T_conv_t) (hid_t src_id, hid_t dst_id, H5T_cdata_t *cdata, void *bkg, hid_t dset_xfer_plist); /* Exception handler. If an exception like overflow happenes during conversion, - * this function is called if it's registered through H5Tset_type_conv_cb. + * this function is called if it's registered through H5Pset_type_conv_cb. */ typedef H5T_conv_ret_t (*H5T_conv_except_func_t)(int except_type, hid_t src_id, hid_t dst_id, void *src_buf, void *dst_buf, void *user_data); |