mirror of
https://github.com/HDFGroup/hdf5.git
synced 2024-11-21 01:04:10 +08:00
[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:
parent
54466efc00
commit
d2e7ce1399
@ -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
|
||||
!
|
||||
|
Loading…
Reference in New Issue
Block a user