diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2000-11-30 14:57:56 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2000-11-30 14:57:56 (GMT) |
commit | d2e7ce139919b63c06452e9d153756a5af6fd95f (patch) | |
tree | 8278be7f97182c62200a4e660779150064ffee2c /fortran | |
parent | 54466efc005eb44480831b12863399749957d651 (diff) | |
download | hdf5-d2e7ce139919b63c06452e9d153756a5af6fd95f.zip hdf5-d2e7ce139919b63c06452e9d153756a5af6fd95f.tar.gz hdf5-d2e7ce139919b63c06452e9d153756a5af6fd95f.tar.bz2 |
[svn-r3036]
Purpose:
Bug fix
Description:
hdf5 1.4.0_beta1 build failed for Fortran test tH5T.f90 because
third argument of the h5tarray_create_f subroutine had INTEGER(SIZE_T)
type instead of INTEGER(HSIZE_T) type.
Solution:
Fixed the datatype.
Platforms tested:
Linux (eirene)
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/test/tH5T.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/test/tH5T.f90 b/fortran/test/tH5T.f90 index 66c4223..961f7e7 100644 --- a/fortran/test/tH5T.f90 +++ b/fortran/test/tH5T.f90 @@ -65,7 +65,7 @@ CHARACTER*256 :: member_name INTEGER :: len ! Lenght of the name of the compound datatype member LOGICAL :: flag - INTEGER(SIZE_T), DIMENSION(3) :: array_dims=(/2,3,4/) + INTEGER(HSIZE_T), DIMENSION(3) :: array_dims=(/2,3,4/) INTEGER :: elements = 24 ! number of elements in the array_dims array. INTEGER(SIZE_T) :: sizechar ! |