diff options
author | Raymond Lu <songyulu@hdfgroup.org> | 2004-05-20 16:19:03 (GMT) |
---|---|---|
committer | Raymond Lu <songyulu@hdfgroup.org> | 2004-05-20 16:19:03 (GMT) |
commit | 136498801485c8bfe59952c757a13268bc078d1b (patch) | |
tree | a023cbd948b134eaa7b5e23b526f0f04ffc05092 /fortran/src/H5f90global.f90 | |
parent | 910e19c646f7ca16a1415f2e64f745b43013cded (diff) | |
download | hdf5-136498801485c8bfe59952c757a13268bc078d1b.zip hdf5-136498801485c8bfe59952c757a13268bc078d1b.tar.gz hdf5-136498801485c8bfe59952c757a13268bc078d1b.tar.bz2 |
[svn-r8545] Purpose: bug fix
Description: array definition is short of 1.
Platforms tested: No test. simple fix
Diffstat (limited to 'fortran/src/H5f90global.f90')
-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 17e97f4..0a43523 100644 --- a/fortran/src/H5f90global.f90 +++ b/fortran/src/H5f90global.f90 @@ -382,7 +382,7 @@ ! ! H5S flags declaration ! - INTEGER, PARAMETER :: H5S_FLAGS_LEN = 19 + INTEGER, PARAMETER :: H5S_FLAGS_LEN = 20 INTEGER H5S_flags(H5S_FLAGS_LEN) !DEC$if defined(BUILD_HDF5_DLL) !DEC$ ATTRIBUTES DLLEXPORT :: /H5S_FLAGS/ |