[svn-r3320]

Purpose:
    Bug fix
Description:
    Compilation failed for the H5f90global.f90 file on DEC UNIX (hdf5-1.4.0-beta3-pre2)
    When new definition H5E_TBBT_F was added, the length of the corresponding
    H5E_flags array was not increased.
Solution:
    Fixed the length of the array.
Platforms tested:
    DEC UNIX (gondolin)
This commit is contained in:
Elena Pourmal 2001-01-22 13:50:21 -05:00
parent 5eea321433
commit e462d3b65e

View File

@ -186,7 +186,7 @@
!
! H5E flags declaration
!
INTEGER, PARAMETER :: H5E_FLAGS_LEN = 23
INTEGER, PARAMETER :: H5E_FLAGS_LEN = 24
INTEGER H5E_flags(H5E_FLAGS_LEN)
COMMON /H5E_FLAGS/ H5E_flags