diff options
author | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2008-07-28 19:44:25 (GMT) |
---|---|---|
committer | Scot Breitenfeld <brtnfld@hdfgroup.org> | 2008-07-28 19:44:25 (GMT) |
commit | 82416cb36d5275e71d0cff30c13994a7bc6800f9 (patch) | |
tree | bc16b21a17ddfe946a2f2b4654776c2b1e3a0f6d /fortran/test/tH5P.f90 | |
parent | 63c718222582f5d78fd5a75ab9aaa34b97244460 (diff) | |
download | hdf5-82416cb36d5275e71d0cff30c13994a7bc6800f9.zip hdf5-82416cb36d5275e71d0cff30c13994a7bc6800f9.tar.gz hdf5-82416cb36d5275e71d0cff30c13994a7bc6800f9.tar.bz2 |
[svn-r15420] Description:
Initialized a string with a space instead of a blank
i.e. var = '' is now var = ' '
This fixes a problem with AIX for bug 1252
Diffstat (limited to 'fortran/test/tH5P.f90')
-rw-r--r-- | fortran/test/tH5P.f90 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fortran/test/tH5P.f90 b/fortran/test/tH5P.f90 index 76edd61..e8e3a1d 100644 --- a/fortran/test/tH5P.f90 +++ b/fortran/test/tH5P.f90 @@ -191,7 +191,7 @@ memb_map(H5FD_MEM_OHDR_F) = H5FD_MEM_OHDR_F memb_addr(H5FD_MEM_OHDR_F) = 0.4 - memb_name = '' + memb_name = ' ' memb_name(H5FD_MEM_SUPER_F) = '%s-s.h5' memb_name(H5FD_MEM_BTREE_F) = '%s-b.h5' memb_name(H5FD_MEM_DRAW_F) = '%s-r.h5' |