diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2008-09-16 17:05:25 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2008-09-16 17:05:25 (GMT) |
commit | d45346f76cfa5b2115cda3cb56121a9baa101407 (patch) | |
tree | 1a22257b1099cdf52862a962def224ad1ee10ce0 /configure | |
parent | b9be0455961ca1098bc4977bf1138394932b75db (diff) | |
download | hdf5-d45346f76cfa5b2115cda3cb56121a9baa101407.zip hdf5-d45346f76cfa5b2115cda3cb56121a9baa101407.tar.gz hdf5-d45346f76cfa5b2115cda3cb56121a9baa101407.tar.bz2 |
[svn-r15631] Description:
In nh5tget_offset_c:
(1) The return value type of H5Tget_offset was set to size_t where
it should be of type int.
(2) Was if offset was equal to 0 it returned the error code of -1 back to
Fortran, this was changed to return an error code of -1 when the
offset value is < 0.
In h5tget_norm_c:
(1) was if the return value of H5Tget_norm = 0 it would return an error
code to Fortran, but from enum of the return value:
typedef enum H5T_norm_t {
H5T_NORM_ERROR = -1, /*error */
H5T_NORM_IMPLIED = 0, /*msb of mantissa isn't stored, always 1 */
H5T_NORM_MSBSET = 1, /*msb of mantissa is always 1 */
H5T_NORM_NONE = 2 /*not normalized */
/*H5T_NORM_NONE must be last */
} H5T_norm_t;
only when -1 is returned is there an error, changed it to return an error only if the value of H5T_NORM_ERROR = -1.
Diffstat (limited to 'configure')
0 files changed, 0 insertions, 0 deletions