diff options
author | Elena Pourmal <epourmal@hdfgroup.org> | 2000-11-17 22:44:24 (GMT) |
---|---|---|
committer | Elena Pourmal <epourmal@hdfgroup.org> | 2000-11-17 22:44:24 (GMT) |
commit | 610ad05c1d18045b33a922e59a3f5fd34870c3fc (patch) | |
tree | f08da22ca543fbfbc305398393208b31357e3aaf /fortran | |
parent | 5dad15399582249d6fa0d7100a84b46116925bf8 (diff) | |
download | hdf5-610ad05c1d18045b33a922e59a3f5fd34870c3fc.zip hdf5-610ad05c1d18045b33a922e59a3f5fd34870c3fc.tar.gz hdf5-610ad05c1d18045b33a922e59a3f5fd34870c3fc.tar.bz2 |
[svn-r2976]
Purpose:
Code maintenance
Description:
Fixed the code to use h5open_f and h5close_f subroutines.
Platforms tested:
Solaris2.6
Diffstat (limited to 'fortran')
-rw-r--r-- | fortran/test/fflush1.f90 | 2 | ||||
-rw-r--r-- | fortran/test/fflush2.f90 | 4 | ||||
-rw-r--r-- | fortran/test/fortranlib_test.f90 | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/fortran/test/fflush1.f90 b/fortran/test/fflush1.f90 index c76a55b..89083eb 100644 --- a/fortran/test/fflush1.f90 +++ b/fortran/test/fflush1.f90 @@ -71,7 +71,7 @@ ! !Initialize FORTRAN predifined datatypes ! - CALL h5init_fortran_f(error) + CALL h5open_f(error) CALL check("h5init_types_f",error,total_error) ! diff --git a/fortran/test/fflush2.f90 b/fortran/test/fflush2.f90 index 63f83a8..a494d63 100644 --- a/fortran/test/fflush2.f90 +++ b/fortran/test/fflush2.f90 @@ -71,7 +71,7 @@ ! !Initialize FORTRAN predifined datatypes ! - CALL h5init_fortran_f(error) + CALL h5open_f(error) CALL check("h5init_types_f",error,total_error) ! @@ -152,7 +152,7 @@ ! !Close FORTRAN predifined datatypes ! - CALL h5close_fortran_f(error) + CALL h5close_f(error) CALL check("h5close_types_f",error,total_error) END PROGRAM FFLUSH2EXAMPLE diff --git a/fortran/test/fortranlib_test.f90 b/fortran/test/fortranlib_test.f90 index 62eee5d..07a17b0 100644 --- a/fortran/test/fortranlib_test.f90 +++ b/fortran/test/fortranlib_test.f90 @@ -30,7 +30,7 @@ CHARACTER*8 :: failure = '*FAILED*' CHARACTER*4 :: e_format ='(8a)' - CALL h5init_fortran_f(error) + CALL h5open_f(error) write(*,*) ' ========================== ' write(*,*) ' FORTRAN tests ' write(*,*) ' ========================== ' @@ -223,7 +223,7 @@ write(*, fmt = '(12a)' ) ' error(s) ! ' write(*,*) ' ============================================ ' - CALL h5close_fortran_f(error) + CALL h5close_f(error) END PROGRAM fortranlibtest |