diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2001-01-22 18:50:21 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2001-01-22 18:50:21 (GMT) |
commit | e462d3b65e11150f1b0b8becc43b2dfe9bf9d1b9 (patch) | |
tree | 7353c3e5e9b4b81db29c829ecc5af2f096ffa85a /fortran | |
parent | 5eea3214334850214a2c76f1805f00538d4f4e42 (diff) | |
download | hdf5-e462d3b65e11150f1b0b8becc43b2dfe9bf9d1b9.zip hdf5-e462d3b65e11150f1b0b8becc43b2dfe9bf9d1b9.tar.gz hdf5-e462d3b65e11150f1b0b8becc43b2dfe9bf9d1b9.tar.bz2 |
[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)
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/src/H5f90global.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
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 |