From e462d3b65e11150f1b0b8becc43b2dfe9bf9d1b9 Mon Sep 17 00:00:00 2001 From: Elena Pourmal Date: Mon, 22 Jan 2001 13:50:21 -0500 Subject: [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) --- fortran/src/H5f90global.f90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fortran/src/H5f90global.f90 b/fortran/src/H5f90global.f90 index 89bf0cb..94b1e20 100644 --- a/fortran/src/H5f90global.f90 +++ b/fortran/src/H5f90global.f90 @@ -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 -- cgit v0.12