[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)
This commit is contained in:
Elena Pourmal 2000-11-30 09:57:56 -05:00
parent 54466efc00
commit d2e7ce1399

View File

@ -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
!