diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2002-05-31 20:11:54 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2002-05-31 20:11:54 (GMT) |
commit | ae818ca9df9e12f4ba32e85de2f49ce164a0095f (patch) | |
tree | e410bfcf872b490298988e2f374ecb83c8b91c1e /fortran/test/tH5G.f90 | |
parent | 4a3fa29c25e2ad0acef8621e21cbd546c184e269 (diff) | |
download | hdf5-ae818ca9df9e12f4ba32e85de2f49ce164a0095f.zip hdf5-ae818ca9df9e12f4ba32e85de2f49ce164a0095f.tar.gz hdf5-ae818ca9df9e12f4ba32e85de2f49ce164a0095f.tar.bz2 |
[svn-r5492]
Purpose:
Code clean up.
Description:
Many F90 compilers were not happy about character*(*) declarations.
Solution:
Used F90 character(len=*) declarations.
Platforms tested:
Solaris 2.7 and Linux 2.4
Diffstat (limited to 'fortran/test/tH5G.f90')
-rw-r--r-- | fortran/test/tH5G.f90 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fortran/test/tH5G.f90 b/fortran/test/tH5G.f90 index 5486bb8..8200f6b 100644 --- a/fortran/test/tH5G.f90 +++ b/fortran/test/tH5G.f90 @@ -37,8 +37,8 @@ INTEGER :: rank = 1 ! Datasets rank INTEGER :: error ! Error flag INTEGER(SIZE_T) :: namesize = 100 !size for symbolic object - CHARACTER*100 :: name !name to put symbolic object - CHARACTER*100 :: commentout !comment to the file + CHARACTER(LEN=100) :: name !name to put symbolic object + CHARACTER(LEN=100) :: commentout !comment to the file INTEGER :: nmembers INTEGER :: obj_type INTEGER, DIMENSION(7) :: data_dims |