diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2004-04-22 17:18:46 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2004-04-22 17:18:46 (GMT) |
commit | 664fc34c33b72d35faf4280629b528dd32520023 (patch) | |
tree | d70c17cfd93cb8bd9a0f89101b5641c771d57a49 /fortran/test/tH5A.f90 | |
parent | 01d12a0e026b528e73724289af8e8d63276d1eae (diff) | |
download | hdf5-664fc34c33b72d35faf4280629b528dd32520023.zip hdf5-664fc34c33b72d35faf4280629b528dd32520023.tar.gz hdf5-664fc34c33b72d35faf4280629b528dd32520023.tar.bz2 |
[svn-r8404]
Purpose: Maintenance
Description: h5dwrite/read_f and h5awrite_read_f functions were overloaded
with dims argument being of type INTEGER and INTEGER(HSIZE_T).
We promised to remove overloading in 1.4 release. It was
removed from documentation but not from the source code.
Solution: Finish code cleanup.
Platforms tested: Solaris 2.7 32 and 64 bit, and copper with --enable-
parallel. Windows are broken, so Kent and Xuan
will test it with their changes later.
Misc. update:
Diffstat (limited to 'fortran/test/tH5A.f90')
-rw-r--r-- | fortran/test/tH5A.f90 | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/fortran/test/tH5A.f90 b/fortran/test/tH5A.f90 index faeb481..59036a5 100644 --- a/fortran/test/tH5A.f90 +++ b/fortran/test/tH5A.f90 @@ -85,8 +85,7 @@ DOUBLE PRECISION, DIMENSION(1) :: attr_double_data = 3.459 REAL, DIMENSION(1) :: attr_real_data = 4.0 INTEGER, DIMENSION(1) :: attr_integer_data = 5 - INTEGER(HSIZE_T), DIMENSION(7) :: data_dims_b - INTEGER, DIMENSION(7) :: data_dims + INTEGER(HSIZE_T), DIMENSION(7) :: data_dims CHARACTER :: aread_character_data ! variable to put read back Character attr data @@ -255,8 +254,8 @@ ! ! Write the Real attribute data. ! - data_dims_b(1) = 1 - CALL h5awrite_f(attr4_id, atype4_id, attr_real_data, data_dims_b, error) + data_dims(1) = 1 + CALL h5awrite_f(attr4_id, atype4_id, attr_real_data, data_dims, error) CALL check("h5awrite_f",error,total_error) ! |